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
<dom-moduleid="my-element"><style>
:host {
x--color: red;
}
p {
color: var(--color);
}
</style><template><div><p>Some paragraph text...</p></div></template></dom-module><script>Polymer({is: "my-element",// The custom properties shim is currently an opt-in featureenableCustomStyleProperties: true});</script><my-element></my-element>
The text should not be red because x--color: red is not a valid property/value combination, but in Chrome it is red.
The text was updated successfully, but these errors were encountered:
Consider the following element:
The text should not be red because
x--color: red
is not a valid property/value combination, but in Chrome it is red.The text was updated successfully, but these errors were encountered: