-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
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
Spec requires adopted stylesheets to be included in styleSheets property but doesn't require them to be used for styling #118
Comments
styleSheets
property, apparently inadverntentlystyleSheets
property, apparently inadvertently
styleSheets
property, apparently inadvertently
Thanks for looking into this!
For this, can we just change the
Yeah I'm not totally sure on this one too.. I wonder if that's the only place where we actually talk about all the stylesheets in a document. |
Hm, Cascade doesn't define which stylesheets are applied to the page, it just dictates their place in the "Order Of Appearance" step. (And adopted sheets count as "sheets independently linked by the originating document", so they're already covered there; the CS spec then covers the relative ordering within that step, under the "as determined by the host document language" caveat.)
I think so, yes; CSSOM just needs patching there to open up the concept a little bit. All the more reason to go ahead with our plans to merge this into CSSOM directly. ^_^ |
I think the intent of "sheets independently linked by the original document" is At the very least CS should have similar language. But it's kind of a stretch to consider a programmatically constructed and dynamically attached object to be a "style sheet[s] independently linked by the originating document", so it would provide greater clarity to either patch or monkeypatch Cascade to include these in the order. I don't think "document or shadow root stylesheets" controls what stylesheets are applied. It's only use is for the |
Here is my proposal for how to make this whole situation more rigorous. (Note: I am not volunteering to spec this, apart from the observable array parts.)
|
Yup, that all sounds right in line with what I thought we'd do too. |
Probably best not to make Cascade depend on CSSOM (that seems backwards for some reason). Perhaps better if CSSOM can reference a Cascade concept. A further interesting discovery CSS Cascade does not seem to have any awareness of shadow roots. This likely needs to be fixed. |
That's because CSS Scoping defines the implications of shadow trees on the Cascade. Maybe more ideal to centralize that at this point, but the definitions exist at least |
I am concerned that implementing this spec interoperably would require violating the letter of what the spec says. Would it be helpful to post a PR that temporarily writes this requirement of the spec in looser language, so that it's not nominally requiring the opposite of what is actually intended? (I don't have the bandwidth to do the really rigorous thing proposed in #118 (comment) ) |
The spec requires adopted stylesheets to also be included in
styleSheets
property, apparently inadvertently.The Constructable Stylesheets spec says:
The phrase "document or shadow root CSS style sheets" links to the definition of that term in CSSOM (thus effectively monkeypatching CSSOM, since the CSSOM definition is written as if all stylesheets come from
<style>
or<link rel=stylesheet>
elements.CSSOM in turn defines the
styleSheets
DOM property thus:This links to the very same definition of document or shadow root CSS style sheets. Therefore, the combination of the specs would require adopted style sheets to also appear in the
styleSheets
property.Chrome does not implement this behavior. And per one of the spec authors, this was not intended.
The spec should be updated that the stylesheets will be used, but will not appear in
styleSheets
. I am not sure how to specify this. In fact, I'm not sure what the spec does now actually requires adopted stylesheets to be used for styling. I don't think the places that require styling even refer to this CSSOM definition. That would likey require monekypatching this spot in CSS Cascading and Inheritence. Best to ask an expert on CSS specs though.The text was updated successfully, but these errors were encountered: