Coder Social home page Coder Social logo

Spec requires adopted stylesheets to be included in styleSheets property but doesn't require them to be used for styling about construct-stylesheets HOT 9 OPEN

othermaciej avatar othermaciej commented on May 25, 2024
Spec requires adopted stylesheets to be included in styleSheets property but doesn't require them to be used for styling

from construct-stylesheets.

Comments (9)

rakina avatar rakina commented on May 25, 2024

cc @tabatkins @emilio

from construct-stylesheets.

rakina avatar rakina commented on May 25, 2024

Thanks for looking into this!

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.

For this, can we just change the styleSheets attribute to contain only stylesheets that are not part of any DocumentOrShadowRoot's adopted style sheets?

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.

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.

from construct-stylesheets.

tabatkins avatar tabatkins commented on May 25, 2024

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.)

For this, can we just change the styleSheets attribute to contain only stylesheets that are not part of any DocumentOrShadowRoot's adopted style sheets?

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. ^_^

from construct-stylesheets.

othermaciej avatar othermaciej commented on May 25, 2024

I think the intent of "sheets independently linked by the original document" is <link rel=stylesheet> and similar constructs. In this case the host document language is HTML and it sort of hooks into this: "The stylesheet keyword may be used with link elements. This keyword creates an external resource link that contributes to the styling processing model."

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 styleSheets property afaict. So instead of additionally patching styleSheets, a simpler solution would be to not patch "document or shadow root stylesheets".

from construct-stylesheets.

domenic avatar domenic commented on May 25, 2024

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.)

  • Update https://drafts.csswg.org/cssom/#css-style-sheet-collections so that each DocumentOrShadowRoot has an associated CSS style sheets, which contains all Link-header derived and <link> or <style> derived style sheets.
    • Remove the "document or shadow root CSS style sheets" concept
    • Optionally make the manner in which this list's contents are determined and/or updated more rigorous. Right now it seems to be a mix of declarative (e.g. for Link-header derived ones) and imperative (for anything that goes through "add a CSS style sheet"). But the imperative stuff is pretty vague, given "at the appropriate location". Maybe adding/removing should be imperative but the ordering should be given by a declarative algorithm that operates on the sheet's owner node + something else for Link headers. Or maybe Link headers should be stored in a separate list from the "CSS style sheets" list, since they are immutable throughout the document lifetime?
  • Update whatwg/webidl#840 so that every observable array extended attribute has a backing list. Then, we can refer to a DocumentOrShadowRoot's adoptedStyleSheets's backing list, to get a real-time updated list of CSSStyleSheet objects.
  • State somewhere (Cascade, or HTML, or CSSOM??) that the stylesheets with contribute to the cascade for a given DocumentOrShadowRoot are the concatenation of the DocumentOrShadowRoot's CSS style sheets plus the DocumentOrShadowRoot's adoptedStyleSheets's backing list.
    • If necessary, make it clear that changes to the contents of either list causes a recomputation of everything relevant.

from construct-stylesheets.

tabatkins avatar tabatkins commented on May 25, 2024

Yup, that all sounds right in line with what I thought we'd do too.

from construct-stylesheets.

othermaciej avatar othermaciej commented on May 25, 2024

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.

from construct-stylesheets.

tabatkins avatar tabatkins commented on May 25, 2024

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

from construct-stylesheets.

othermaciej avatar othermaciej commented on May 25, 2024

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) )

from construct-stylesheets.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.