Re: [csswg-drafts] [css-cascade-6] Add a `media()` function for `@import` (#10972)

The CSS Working Group just discussed ``[css-cascade-6] Add a `media()` function for `@import` ``, and agreed to the following:

* `RESOLVED: Expand supports term of @import production to a boolean tree that supports a media function, and figure out download stuff as we go`

<details><summary>The full IRC log of that discussion</summary>
&lt;kbabbitt> TabAtkins: the @import grammar is a mess because we have to assume whatever follows is a MQ<br>
&lt;kbabbitt> ... we have some workarounds to put a support after it<br>
&lt;kbabbitt> ... it's a little weird<br>
&lt;kbabbitt> .. question here is if we could add a media function like supports function<br>
&lt;kbabbitt> ... and then change grammar of @import such that it first checks for a boolean expression<br>
&lt;kbabbitt> ... and if not parse it as an MQ per legacy behavior<br>
&lt;kbabbitt> ... that will allow authors to get full good boolean behavior, even with MQs<br>
&lt;kbabbitt> ... without breaking naked MQs following import<br>
&lt;kizu> +1, sounds reasonable<br>
&lt;kbabbitt> astearns: trying to load this into my mind<br>
&lt;kbabbitt> ... if what we get is not a boolean, are you sure it's always going to be good to parse it as a MQ function?<br>
&lt;kbabbitt> TabAtkins: that's what we do today<br>
&lt;kbabbitt> ... grammar for @Import will try to parse as a MQ<br>
&lt;kbabbitt> ... which is a broad syntax<br>
&lt;kbabbitt> ... will eat a lot of things and turn them into unknown MQs<br>
&lt;kbabbitt> astearns: wondering whether... we're doing this for media function, any others we might want to add in the future?<br>
&lt;kbabbitt> TabAtkins: problem right now is that imports take bare MQ right now<br>
&lt;kbabbitt> ... we also have a proposal for supports function<br>
&lt;kbabbitt> ... this is makeing it so we can do either a bare MQ or dual function with supports<br>
&lt;kbabbitt> astearns: OK<br>
&lt;kbabbitt> ... any other questions?<br>
&lt;emilio> Yeah, @import ... supports() is a thing already<br>
&lt;dbaron> +1<br>
&lt;bkardell> q+<br>
&lt;emilio> +1<br>
&lt;kbabbitt> TabAtkins: proposed: add a media function alongside supports function to @import<br>
&lt;kbabbitt> ... and switch grammar around so that we first try to match as boolean expression with these functions<br>
&lt;miriam> q+<br>
&lt;astearns> ack bkardell<br>
&lt;kbabbitt> ... and if not, treat as bare MQ<br>
&lt;kbabbitt> bkardell: any preprocessor that tries to enable this?<br>
&lt;kbabbitt> TabAtkins: I don't think there's one currently<br>
&lt;kbabbitt> ... just that especially when media type is involved in query, parsing is wider than you think and confusing in some corner cases<br>
&lt;kbabbitt> bkardell: are there bugs where people are running into this?<br>
&lt;kbabbitt> TabAtkins: don't know<br>
&lt;lea> +1, seems reasonable to me too<br>
&lt;kbabbitt> bkardell: curious how this came up? is there demand?<br>
&lt;kbabbitt> miriam: roman brought it up and works on a preprocessor<br>
&lt;astearns> ack miriam<br>
&lt;kbabbitt> miriam: this has no impact on order of things, right?<br>
&lt;kbabbitt> ... layer and scope have to come first, then conditions?<br>
&lt;kbabbitt> TabAtkins: yes because those are not part of boolean syntax<br>
&lt;astearns> ack fantasai<br>
&lt;Zakim> fantasai, you wanted to ask for the proposed grammar<br>
&lt;kbabbitt> fantasai: tab can you type in proposed grammar?<br>
&lt;kbabbitt> TabAtkins: replace MQ list term with a boolean of the tests we use in if<br>
&lt;fantasai> @import [ &lt;url> | &lt;string> ]<br>
&lt;fantasai>         [ layer | layer(&lt;layer-name>) ]?<br>
&lt;fantasai>         [ supports( [ &lt;supports-condition> | &lt;declaration> ] ) ]?<br>
&lt;fantasai>         &lt;media-query-list>? ;<br>
&lt;kbabbitt> TabAtkins: MQ list would become a boolean<br>
&lt;kbabbitt> dbaron: was part of the intent to allow and and or between media?<br>
&lt;TabAtkins> @import &lt;url> layer? &lt;boolean [&lt;supports> | &lt;media>] >?<br>
&lt;bkardell> oh - layers right...<br>
&lt;kbabbitt> TabAtkins: MQless version as an alternative if first presents parsing error<br>
&lt;bkardell> yeah seems reasonable<br>
&lt;kbabbitt> fantasai: OK I think I understand<br>
&lt;dbaron> I think s/MQless/MQ/<br>
&lt;kbabbitt> ...basically like added conditional syntax<br>
&lt;fantasai> s/added/@if/<br>
&lt;kbabbitt> TabAtkins: right now you can't do supports or MQ<br>
&lt;TabAtkins> TabAtkins: you have to do both<br>
&lt;kbabbitt> astearns: Proposed resolution is to add media function to the @import syntax<br>
&lt;kbabbitt> dbaron: I think there's maybe one grammar alternative<br>
&lt;kbabbitt> ... maybe a boolean in a different way<br>
&lt;kbabbitt> ... could turn current supports function into boolean supports media<br>
&lt;kbabbitt> .. and leave backcompat media term after it<br>
&lt;kbabbitt> ... would in theory allow both<br>
&lt;kbabbitt> ... might be simpler form parsing perspective<br>
&lt;kbabbitt> TabAtkins: think that might be better because media function doesnt allow media type, just feature<br>
&lt;kbabbitt> ... e.g. print, not expressible as a feature<br>
&lt;dbaron> dbaron: ... not sure if it's better or worse.<br>
&lt;kbabbitt> ... could still put it at the end<br>
&lt;kbabbitt> TabAtkins: Proposed: expand supports term to be a boolean tree that also supports media function<br>
&lt;kbabbitt> fantasai: new grammar that was not posted?<br>
&lt;kbabbitt> TabAtkins: exactly as current except replace supports by supports or media<br>
&lt;kbabbitt> fantasai: supports(foo) or media(bar)<br>
&lt;kbabbitt> ... and print<br>
&lt;kbabbitt> ... is print then intersected with supports?<br>
&lt;fantasai> s/and//<br>
&lt;kbabbitt> TabAtkins: yes both must be true<br>
&lt;emilio> q+<br>
&lt;kbabbitt> astearns: same condition in both, it may or may not match?<br>
&lt;kbabbitt> ... conflicting things won't match<br>
&lt;kbabbitt> TabAtkins: example?<br>
&lt;kbabbitt> astearns: media function can only express features<br>
&lt;kbabbitt> ... there's a subset of old production which can be expressed infunction<br>
&lt;kbabbitt> ... you can now have import statements that have media feature conditions in both places<br>
&lt;kbabbitt> TabAtkins: theoretically<br>
&lt;fantasai> @import "style" supports(foo) or media(bar) print; /* intersects { supports(foo) or media(bar) } and { print } */<br>
&lt;kbabbitt> astearns: we need to know how to process<br>
&lt;kbabbitt> TabAtkins: MQ list at end would be AND-ed with other conditions<br>
&lt;TabAtkins> Proposed: expand supports term to be a boolean tree that also supports media function<br>
&lt;kbabbitt> fantasai: [points to example above]<br>
&lt;kbabbitt> astearns: objections?<br>
&lt;astearns> ack emilio<br>
&lt;kbabbitt> emilio: not sure about mixing support and media<br>
&lt;kbabbitt> ... as in allowing you to write arbitrary bool expressions with them<br>
&lt;kbabbitt> ... because supports has different failure semantics than media<br>
&lt;kbabbitt> ... when supports doesn't match, doesn't applyu at all<br>
&lt;kbabbitt> ... whereas media can dynamically match<br>
&lt;kbabbitt> ... a bit weird when you start to mix them<br>
&lt;kbabbitt> .. could define that it doesn't do anything if supports condition doesn't match<br>
&lt;kbabbitt> ... but it's weird since you can also negate them<br>
&lt;kbabbitt> fantasai: good point<br>
&lt;kbabbitt> ... maybe media stuff in boolean means that it doesn't download<br>
&lt;kbabbitt> emilio: but that's bad<br>
&lt;kbabbitt> dbaron: you could use tristate boolean logic to solve this<br>
&lt;kbabbitt> emilio: MQ s are also a tristate<br>
&lt;kbabbitt> TabAtkins: can you elaborate why it's bad if a media function in supports term starts blocking downloading when false?<br>
&lt;kbabbitt> emilio: because then it goes past 6pm and your computer goes to sleep, download doesn't happen (?)<br>
&lt;kbabbitt> dbaron: condition changed but you're offline now and can't download<br>
&lt;kbabbitt> TabAtkins: I don't think we designed this behavior originally to support offline pages<br>
&lt;kbabbitt> ... we wanted to make sure print media could start wuickly without waiting for network<br>
&lt;kbabbitt> emilio: Not just print, also resizing<br>
&lt;kbabbitt> ... don't want intermediate state where page goes below threshold and now have to wait for another download<br>
&lt;kbabbitt> emilio: suddenly you have an FOUC<br>
&lt;kbabbitt> dbaron: I'm with emilio that we need to solve this correctly<br>
&lt;kbabbitt> ...l think it's doable but might need to work out in issue<br>
&lt;kbabbitt> emilio: could prove that a thing will never match but need to write algo for that<br>
&lt;kbabbitt> dbaron: the "should we download" algo is "every media function evaluates to unknown"<br>
&lt;kbabbitt> dbaron: if your top level result is unknown or ture, download<br>
&lt;kbabbitt> dbaron: but unknown and false is false<br>
&lt;kbabbitt> TabAtkins: yup<br>
&lt;kbabbitt> emilio: that works but it's a bit confusing with unknown MQ where that wouldn't ever match<br>
&lt;kbabbitt> dbaron: two different unknowns<br>
&lt;kbabbitt> ... known unknowns and unknown unknowns<br>
&lt;kbabbitt> emilio: that may need to get worked ouyt<br>
&lt;kbabbitt> ... not blocking on goal of this but speccing and implementing will be more fun<br>
&lt;dbaron> s/known unknowns and unknown unknowns/just don't call them known unknows and unknown unknowns :-)/<br>
&lt;kbabbitt> astearns: are we taking previous resolution and then working out download sematics?<br>
&lt;dbaron> (important substitution because that was a joke about the Rumsfeld quote)<br>
&lt;kbabbitt> TabAtkins: I'm fine with that<br>
&lt;TabAtkins> (i would like to avoid a 4-state boolean logic...)<br>
&lt;kbabbitt> astearns: Proposed: Expand supports term of @import production to a boolean tree that supports a media function<br>
&lt;kbabbitt> ... and figure out download stuff as we go<br>
&lt;kbabbitt> ... objections?<br>
&lt;kbabbitt> RESOLVED: Expand supports term of @import production to a boolean tree that supports a media function, and figure out download stuff as we go<br>
&lt;dbaron> (I think the two different unknowns *might* be at different stages of the processing pipeline...)<br>
&lt;TabAtkins> (i dont' think so, based on what emilio was saying about distinguishing between MQs we dont' know the value of, and MQs we dont' recognize)<br>
</details>


-- 
GitHub Notification of comment by css-meeting-bot
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10972#issuecomment-2773298233 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 2 April 2025 17:50:57 UTC