Skip to content
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

Allow elements with display:contents to be focusable. #9425

Merged
merged 4 commits into from
Jan 31, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -78830,8 +78830,8 @@ dictionary <dfn dictionary>ToggleEventInit</dfn> : <span>EventInit</span> {

<li>the element is not <span>inert</span>;</li>

<li>the element is either <span>being rendered</span> or <span>being used as relevant canvas
fallback content</span>.</li>
<li>the element is either <span>being rendered</span>, <span>relevant due to rendered
children</span>, or <span>being used as relevant canvas fallback content</span>.</li>
</ul>
<td headers="td-fa-1 th-fa-dom-rep">
The element itself.
Expand Down Expand Up @@ -130825,6 +130825,11 @@ console.assert(container.firstChild instanceof SuperP);
<p class="note">This specification does not define the precise timing for when the intersection is
tested, but it is suggested that the timing match that of the Intersection Observer API. <ref>INTERSECTIONOBSERVER</ref></p>

<p>An element is <dfn>relevant due to rendered children</dfn> if it is not <span>being
rendered</span> but its children (if any) could <span data-x="being rendered">be rendered</span>,
zcorpan marked this conversation as resolved.
Show resolved Hide resolved
as a result of CSS 'display: contents', or some equivalent in other styling languages.
<ref>CSSDISPLAY</ref></p>

<hr>

<p>User agents that do not honor author-level CSS style sheets are nonetheless expected to act as
Expand Down
Loading