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
In Polymer 2.x :root has been replaced inside elements with :host > *. This is an indication to the custom property shim that any custom properties used in that selector should apply anywhere in the host. Polymer should make this work in 1.x to ease forward compatibility with 2.x. There are a few issues with the current behavior:
In Polymer 2.x
:root
has been replaced inside elements with:host > *
. This is an indication to the custom property shim that any custom properties used in that selector should apply anywhere in the host. Polymer should make this work in 1.x to ease forward compatibility with 2.x. There are a few issues with the current behavior::host > *
(http://jsbin.com/gafare/edit?html,output).:root
is not converted to:host > *
(http://jsbin.com/yiwevak/edit?html,output):root
is converted to.my-element-0 .my-element:root
which does not match (http://jsbin.com/vivitec/edit?html,output).The text was updated successfully, but these errors were encountered: