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
This results in undesired settings to attributes. If, for example, there's a binding to an img's src attribute, a network request is made that will typically cause an unintended 404.
When a custom element is upgraded, the shadowRoot is created and the template's contents are stamped into it. After this, bindings are setup.
The text was updated successfully, but these errors were encountered:
… is now:
1. create instance of template content
2. bind it
3. append to shadowRoot
Previously it was 1, 3, 2 which could lead to attribute values having values with {{}} in them while being in dom. This can create issues like images loading with incorrect urls.
This results in undesired settings to attributes. If, for example, there's a binding to an img's src attribute, a network request is made that will typically cause an unintended 404.
When a custom element is upgraded, the shadowRoot is created and the template's contents are stamped into it. After this, bindings are setup.
The text was updated successfully, but these errors were encountered: