webcomponents/shadycss

Document selectors with pseudo classes generate incorrect styles

dfreedm opened this issue · 1 comments

Copied from Polymer/polymer#4885


Selectors of the form
html:not([foo]) *
will generate
html:not([foo]):not(.style-scope).not([style-scope]) *
instead of
html:not([foo]) *:not(.style-scope):not([style-scope])

What is it of