Re: [w3c/webcomponents] Focus delegation from shadow host should not behave like sequential focus navigation (#830)

Do we not already have an API with the `focus` and `focusin` events?

```js
  this.addEventListener('focus', (e) => {
    e.preventDefault();
    this.shadowRoot.querySelector('#default-input').focus();
  });
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/830#issuecomment-525827075

Received on Wednesday, 28 August 2019 16:44:28 UTC