You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under CustomElements polyfill (e.g. Safari, Firefox), detached is not getting called when trying to remove an element (x-foo) which is in the localDom of another element (x-app).
In the above, calling removeFoo() will not trigger x-foo's detached callback.
This is because in ready.html, host is being added to the element but in CustomElements/observe.js we also use host to determine if the element is inDocument.
The text was updated successfully, but these errors were encountered:
Under CustomElements polyfill (e.g. Safari, Firefox), detached is not getting called when trying to remove an element (x-foo) which is in the localDom of another element (x-app).
In the above, calling removeFoo() will not trigger x-foo's detached callback.
This is because in ready.html,
host
is being added to the element but in CustomElements/observe.js we also usehost
to determine if the element is inDocument.The text was updated successfully, but these errors were encountered: