Re: [csswg-drafts] [selectors] Adding a `:heading()` selector for headingoffset? (#10296)

The CSS Working Group just discussed ``[selectors] Adding a `:heading()` selector for headingoffset?``, and agreed to the following:

* ``RESOLVED: Add `:heading()` that accepts a comma-separated list of an+b expressions``
* ``RESOLVED: `:heading()` has the expected class-level specificity``

<details><summary>The full IRC log of that discussion</summary>
&lt;emeyer> TabAtkins: There was a suggestion for adding a :heading to apply to all headings, and also to select to select things based onthe outline algorithm that eventually got dropped<br>
&lt;emeyer> …There are HTML attributes that let you adjust the level of headings in a subtree, so this is relevant again<br>
&lt;emeyer> …Anything we do here should be contigent on the HTML thing actually happens<br>
&lt;emeyer> …Proposal is to allow `:heading(an + b)` that applies to adjusted heading levels rather than tag names<br>
&lt;kizu> q+<br>
&lt;astearns> ack kizu<br>
&lt;emeyer> kizu: I support this<br>
&lt;TabAtkins> (comma-separated list of an+b expressions)<br>
&lt;emeyer> …Do we want to have a shortcut to allow `:heading(n)`<br>
&lt;emeyer> TabAtkins: Yes<br>
&lt;emeyer> astearns: Proposed resolution is allow comma-separated list of an+b expressions to apply to adjusted heading levels<br>
&lt;emeyer> …Seeing no objections,<br>
&lt;emeyer> RESOLVED: Add `:heading()` that accepts a comma-separated list of an+b expressions<br>
&lt;emeyer> TabAtkins: All the UA stylesheets apply to headings by tag names, which has tag-level specificty<br>
&lt;emeyer> …A `:heading()` would by default of class specificity<br>
&lt;emeyer> …Is that a problem?<br>
&lt;kbabbitt> q+<br>
&lt;astearns> ack kbabbitt<br>
&lt;emeyer> …Should we say `:heading()` has tag specificity rather than tag specificity?<br>
&lt;kizu> q+<br>
&lt;emeyer> kbabbitt: To the extent this would juggle rule application order, that would be confined to the UA stylesheet, right?<br>
&lt;emeyer> TabAtkins: Yes<br>
&lt;emeyer> kbabbitt: So the implementor could rejuggle styles<br>
&lt;emeyer> TabAtkins: Yes, but author styles might get overridden byu the new UA styles if this has class specificity<br>
&lt;emeyer> kbabbitt: Ah, so that’s the concern, is that clash<br>
&lt;emeyer> TabAtkins: Yes, it’s representative<br>
&lt;astearns> change my h1, h2, h3, h4, h5, h6{} rule to :heading{}<br>
&lt;emeyer> …of the general class of concerns<br>
&lt;kurt> *:heading()?<br>
&lt;emeyer> astearns: I think there’s good reason to define this as having tag specificity<br>
&lt;TabAtkins> (the workaround is `:is(div:not(*), :where(:heading))`)<br>
&lt;emeyer> kbabbitt: Do we have other pseudos that do this?<br>
&lt;emilio> q+<br>
&lt;emeyer> TabAtkins: No; we don’t have any pseudos that stand in for tag nakmes except maybe :any-link<br>
&lt;astearns> ack kizu<br>
&lt;emeyer> kizu: It’s basically an alias to the adjusted tag names, so tag specificity makes sense here<br>
&lt;astearns> ack emilio<br>
&lt;emeyer> q+<br>
&lt;kbabbitt> s/is that clash/is authors adopting the new pseudo and getting surprising results/<br>
&lt;emeyer> emilio: Have we checked if changing the UA style sheet will result in conflict?<br>
&lt;emeyer> …I agree that migrating to H-tags to this makes tag specificity appealing<br>
&lt;emeyer> …But having a pseudo with tag specificity is odd<br>
&lt;kizu> `:is(h1,h2,h3)` — also a pseudo-class with tag specificity, kinda<br>
&lt;emeyer> …What about attribute selectors?<br>
&lt;emeyer> TabAtkins: They’re exactly class level<br>
&lt;emeyer> emilio: …I’d rather keep to class specificity for consistency, unless we find out it breaks lots of things<br>
&lt;bramus> +1 on staying consistent<br>
&lt;emeyer> …I think that’s somewhat unlikely<br>
&lt;emeyer> astearns: I’m not that concerned about the user stylesheets<br>
&lt;emeyer> …There are likely to be UA rules that can’t use the new thing for whatever reason<br>
&lt;emeyer> …I’m worried about defining this thing and then making it so you can’t use it without knowing the special incantation<br>
&lt;emeyer> TabAtkins: I’m pretty evenly divided on this<br>
&lt;astearns> ack emeyer<br>
&lt;TabAtkins> scribe+<br>
&lt;kizu> one of workarounds: `:is(:not(h1, :not(h1)), :where(:heading(1, 2, 3)))`<br>
&lt;lea> What about role=heading aria-level=N?<br>
&lt;TabAtkins> emeyer: is there a way we can make it so that... you know how :where() doesn't have specificity implications, can we do something related so it has specificity of the things inside it?<br>
&lt;TabAtkins> emeyer: so :heading(1) that's equivlaent to `h1`, if I have :heading(n+4), can we have the thing in the parens convey the specificity.<br>
&lt;lea> That’s not like :where, :where has 0 soecificity. It’s more like :is or :not<br>
&lt;emeyer> TabAtkins: Ths issue is all things you can do here, you could do with `:is()`<br>
&lt;astearns> ack dbaron<br>
&lt;TabAtkins> (it's always tag-equivalent when you desugar it)<br>
&lt;emeyer> dbaron: I worry about the cost of making rules more complex for everybody<br>
&lt;emeyer> …For implementors, for authors<br>
&lt;emilio> 1+<br>
&lt;emeyer> …This feels like a case of adding more magic, and probably isn’t worth more magic<br>
&lt;emilio> +1*<br>
&lt;emeyer> …The additional overhead of learning and understanding isn’t worth it<br>
&lt;emeyer> …I don’t feel strongly about this, but that’s where I lean<br>
&lt;ntim> +1 to dbaron<br>
&lt;emeyer> astearns: The sense of the room is that making an exception is not motivated enough<br>
&lt;emeyer> …So we should open this to a wider audience to see how people will use this<br>
&lt;emeyer> TabAtkins: Like IDs exist only for IDs, tags exist to apply to tags, so it’s probably unlikely to cause issues in practice<br>
&lt;emeyer> …I think having :heading() being class specificity should be safe<br>
&lt;kizu> `.foo { … } h1 { … } &lt;h1 class="foo">` — replacement  here will not be safe<br>
&lt;emeyer> astearns: Since that’s what falls out of the definition, do we need a resolution?<br>
&lt;emeyer> TabAtkins: Let’s record the sense of the room<br>
&lt;emeyer> astearns: Objections?<br>
&lt;emeyer> (none)<br>
&lt;emeyer> RESOLVED: `:heading()` has the expected class-level specificity<br>
&lt;emeyer> astearns: Lea asked about ARIA heading roles<br>
&lt;emeyer> TabAtkins: That’s up to HTML, not our problem<br>
&lt;emeyer> astearns: Fair enough<br>
&lt;dbaron> I think in general aria attributes don't affect non-a11y things, though.<br>
&lt;TabAtkins> ("what are headings" and "what level are they" is a host-language problem)<br>
</details>


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


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

Received on Thursday, 3 April 2025 14:30:19 UTC