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
Given an element added to an unknown shadowRoot like this:
var root = unknownHostElement.createShadowRoot();
root.appendChild(document.createElement('x-foo'));
An exception will occur due to the fact that it's assumed that the dom host of the x-foo element has a known styling api which can be interrogated. In this case the dom host of x-foo is not a Polymer element. We'll need to make the property resolver smarter about finding a styling host to avoid this problem and ensure that elements in unknown hosts are properly styled.
The text was updated successfully, but these errors were encountered:
Given an element added to an unknown shadowRoot like this:
An exception will occur due to the fact that it's assumed that the dom host of the
x-foo
element has a known styling api which can be interrogated. In this case the dom host ofx-foo
is not a Polymer element. We'll need to make the property resolver smarter about finding a styling host to avoid this problem and ensure that elements in unknown hosts are properly styled.The text was updated successfully, but these errors were encountered: