Re: [w3c/webcomponents] connectedCallback timing when the document parser creates custom elements (#551)

@franktopel the `attributeChangedCallback` is triggered as soon as the **beginning** of the node is known, AKA the opening tag.

Differently from `connectedCallback` or whatever children watcher we want, the `attributeChangedCallback` will never trigger when one attribute is known but another one isn't ,because `attributeChangedCallback` is consistent in triggering when all attributes on the opening tag are known, instead of randomly in the wild without any signal all nodes are known, which is what my proposal addresses.

-- 
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/551#issuecomment-431508163

Received on Friday, 19 October 2018 21:43:58 UTC