whatwg / html

HTML Standard
https://html.spec.whatwg.org/multipage/
Other
8.11k stars 2.67k forks source link

Should use "fetch a CSS style sheet" from CSSOM #968

Open Ms2ger opened 8 years ago

Ms2ger commented 8 years ago

https://drafts.csswg.org/cssom/#fetch-a-css-style-sheet https://html.spec.whatwg.org/multipage/#concept-link-obtain

annevk commented 5 years ago

The issue in the HTML Standard says this would replace "default fetch and process the linked resource", but I'm not sure how good that is given how much common infrastructure it covers, such as referrer policy and integrity.

domenic commented 5 years ago

Yes, these days I'd kind of prefer to invert the model. Especially after @domfarolino's work revamping link fetching to be more hookable, I think more likely we could define "linked resource fetch setup steps" for stylesheets, and keep it all centralized in HTML.

annevk commented 4 years ago

I noticed that the CSSOM variant does not check for the response's status to be 2xx.

noamr commented 3 years ago

Yes, these days I'd kind of prefer to invert the model. Especially after @domfarolino's work revamping link fetching to be more hookable, I think more likely we could define "linked resource fetch setup steps" for stylesheets, and keep it all centralized in HTML.

I tend to agree. To make the CSS variant variable it would need to copy or import things from HTML such as "potentail-CORS" stuff which should have knowledge about crossorigin attributes of link elements - an HTML concern rather than CSS.