Re: [WICG/webcomponents] Need a callback for when children changed or parser finished parsing children (#809)

An attempt at a concrete API for a Promise could be one in `elementinternals`:

```js
class MyElement extends HTMLElement {
  #internals = this.attachInternals()
  async connectedCallback() {
    await this.#internals.fullyParsed();
  }
}
```

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

Message ID: <WICG/webcomponents/issues/809/1457937796@github.com>

Received on Tuesday, 7 March 2023 10:38:10 UTC