We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The polyfill wraps scoped styles with the element name, but it doesn't do the same for type extension custom elements:
<element name="x-li" extends="li"> <template> <style> @host { * { list-style: none; display: block;} } hgroup { color: red; } </style> <hgroup><content></content></hgroup> </template> <script> Polymer.register(this); </script> </element> <li is="x-li">I should be red</x-li>
In Safari, the text is black. Chrome Canary, it's red.
http://jsbin.com/alecek/3/edit
cc @sorvell
The text was updated successfully, but these errors were encountered:
Acknowledged. This is a bug.... on it.
Sorry, something went wrong.
Fixed by 63a1e0d
sorvell
No branches or pull requests
The polyfill wraps scoped styles with the element name, but it doesn't do the same for type extension custom elements:
In Safari, the text is black. Chrome Canary, it's red.
http://jsbin.com/alecek/3/edit
cc @sorvell
The text was updated successfully, but these errors were encountered: