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

Add fullscreen.dist.yml #902

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
38 changes: 38 additions & 0 deletions feature-group-definitions/fullscreen.dist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Generated from: fullscreen.yml
# Do not edit this file by hand. Edit the source file instead!

name: Fullscreen API
description: The fullscreen API makes a specific element fill the whole screen and hides most browser UI.
spec: https://fullscreen.spec.whatwg.org/
caniuse: fullscreen
status:
baseline: false
support:
chrome: "71"
chrome_android: "71"
edge: "79"
firefox: "64"
firefox_android: "64"
safari: "16.4"
compat_features:
- api.Document.exitFullscreen
- api.Document.exitFullscreen.returns_promise
# Historical in spec, deprecated in BCD.
# - api.Document.fullscreen
- api.Document.fullscreenchange_event
- api.Document.fullscreenElement
- api.Document.fullscreenEnabled
- api.Document.fullscreenerror_event
- api.Element.fullscreenchange_event
- api.Element.fullscreenerror_event
- api.Element.requestFullscreen
- api.Element.requestFullscreen.returns_promise
- api.HTMLIFrameElement.allowFullscreen
- api.ShadowRoot.fullscreenElement
- css.selectors.backdrop.fullscreen
- css.selectors.fullscreen
# Only supported in Firefox and non-essential since only the topmost
# fullscreen element is typically visible. For this to matter, you need nested
# fullscreen with non-opaque background in the topmost fullscreen element.
# - css.selectors.fullscreen.all_elements
- html.elements.iframe.allowfullscreen
8 changes: 6 additions & 2 deletions feature-group-definitions/fullscreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ caniuse: fullscreen
compat_features:
- api.Document.exitFullscreen
- api.Document.exitFullscreen.returns_promise
- api.Document.fullscreen
# Historical in spec, deprecated in BCD.
# - api.Document.fullscreen
- api.Document.fullscreenchange_event
- api.Document.fullscreenElement
- api.Document.fullscreenEnabled
Expand All @@ -18,5 +19,8 @@ compat_features:
- api.ShadowRoot.fullscreenElement
- css.selectors.backdrop.fullscreen
- css.selectors.fullscreen
- css.selectors.fullscreen.all_elements
# Only supported in Firefox and non-essential since only the topmost
# fullscreen element is typically visible. For this to matter, you need nested
# fullscreen with non-opaque background in the topmost fullscreen element.
# - css.selectors.fullscreen.all_elements
- html.elements.iframe.allowfullscreen
Loading