Skip to content

Commit

Permalink
Add feature for focusable display: contents elements (#24766)
Browse files Browse the repository at this point in the history
`display: contents` has severe accessibility issues without this feature
and web-features can't compute a (useful) status for `display: contents`
without data along these lines.
  • Loading branch information
ddbeck authored Oct 28, 2024
1 parent e5e7811 commit aa4b916
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions css/properties/display.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
},
"contents": {
"__compat": {
"spec_url": "https://drafts.csswg.org/css-display/#valdef-display-contents",
"support": {
"chrome": {
"version_added": "65"
Expand Down Expand Up @@ -146,6 +147,46 @@
"deprecated": false
}
}
},
"focusable_elements": {
"__compat": {
"description": "Elements with <code>display: contents</code> are focusable",
"support": {
"chrome": {
"version_added": false,
"impl_url": "https://crbug.com/40866683"
},
"chrome_android": "mirror",
"edge": "mirror",
"firefox": {
"version_added": false,
"impl_url": [
"https://bugzil.la/1791648",
"https://bugzil.la/1553549"
]
},
"firefox_android": "mirror",
"ie": {
"version_added": false
},
"oculus": "mirror",
"opera": "mirror",
"opera_android": "mirror",
"safari": {
"version_added": false,
"impl_url": "https://webkit.org/b/255149"
},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": "mirror"
},
"status": {
"experimental": true,
"standard_track": true,
"deprecated": false
}
}
}
},
"flex": {
Expand Down

0 comments on commit aa4b916

Please sign in to comment.