-
Notifications
You must be signed in to change notification settings - Fork 107
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 holding features for unspecified platform features #2566
Open
ddbeck
wants to merge
19
commits into
main
Choose a base branch
from
unspecified-web
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 8 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
aa495fd
Add holding features unspecified platform features
ddbeck 37da4d9
Make the description consistent
ddbeck e252d3d
Add `AbortPaymentEvent`
ddbeck 4695fc8
Format
ddbeck 01b5106
Add more unspecified keys
ddbeck bd3a920
Add `api.Permissions.permission_accessibility-events`
ddbeck add9bee
Add `<a hreftranslate>`
ddbeck 0e474d1
Add link for `Function.prototype.displayName`
ddbeck 83a6333
Add unspecified help page
ddbeck 5cb32b0
Add dist
ddbeck 0df1f24
Merge branch 'main' into unspecified-web
ddbeck 8d2e3b0
Format
ddbeck 48cad8b
Refresh dist
ddbeck 47d9159
Apply typo fix
ddbeck b0d8a01
Merge branch 'main' into unspecified-web
ddbeck 28e9bf0
Add more error properties
ddbeck 006373d
Move to drafts
ddbeck 6a79987
Add missing draft dates
ddbeck 45fa52b
Merge branch 'main' into unspecified-web
ddbeck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Unspecified APIs | ||
description: Some browsers implement unspecified APIs. This is an artificial feature that contains references to browser compatibility data entries for those additions. | ||
spec: link to our own documentation explaining ourselves in more detail | ||
discouraged: | ||
according_to: | ||
- TODO link to our own documentation explaining ourselves in more detail | ||
compat_features: | ||
# Chrome implemented these APIs while they were in a PR for the spec, which | ||
# was subsequently not included in the ultimately merged changes. | ||
# https://github.com/w3c/payment-handler/pull/170#issuecomment-483453062 | ||
# https://issues.chromium.org/issues/40527525 | ||
- api.AbortPaymentEvent | ||
- api.AbortPaymentEvent.AbortPaymentEvent | ||
- api.AbortPaymentEvent.respondWith | ||
|
||
# These `Screen` properties are broadly interoperable but unspecified. | ||
# https://github.com/w3c/window-management/pull/76#discussion_r780596068 | ||
# contains the only discussion I could find of this fact. | ||
- api.Screen.availLeft | ||
- api.Screen.availLeft.relative-multi-screen | ||
- api.Screen.availTop | ||
- api.Screen.availTop.relative-multi-screen | ||
|
||
# Dropped from Accessibility Object Model spec and potentially never shipped | ||
# anywhere. https://wicg.github.io/aom/spec/phase2.html#privacy-concerns | ||
# https://github.com/mdn/browser-compat-data/pull/25860 | ||
- api.Permissions.permission_accessibility-events |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Unspecified CSS | ||
description: Some browsers implement unspecified CSS properties or values. This is an artificial feature that contains references to browser compatibility data entries for those additions. | ||
spec: TODO link to our own documentation explaining ourselves in more detail | ||
discouraged: | ||
according_to: | ||
- TODO link to our own documentation explaining ourselves in more detail | ||
compat_features: | ||
# Removed from the platform, but not yet removed from BCD | ||
- -moz-image-region # To be removed in March 2025 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Unspecified HTML | ||
description: Some browsers implement unspecified HTML elements and attributes. This is an artificial feature that contains references to browser compatibility data entries for those additions. | ||
spec: TODO link to our own documentation explaining ourselves in more detail | ||
discouraged: | ||
according_to: | ||
- TODO link to our own documentation explaining ourselves in more detail | ||
compat_features: | ||
# Stuck in WHATWG PR limbo: | ||
# https://github.com/mdn/browser-compat-data/pull/25863 | ||
- api.HTMLAnchorElement.hrefTranslate | ||
- html.elements.a.hreftranslate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Unspecified JavaScript | ||
description: Some browsers implement unspecified JavaScript properties or methods. This is an artificial feature that contains references to browser compatibility data entries for those additions. | ||
spec: link to our own documentation explaining ourselves in more detail | ||
discouraged: | ||
according_to: | ||
- TODO link to our own documentation explaining ourselves in more detail | ||
compat_features: | ||
# Firefox-only Function property. | ||
# There exists some discussion of getting rid | ||
# of it: https://github.com/tc39/proposal-error-stacks/issues/14 | ||
- javascript.builtins.Function.displayName | ||
|
||
# Firefox-only InternalError object | ||
# Thrown on "too much recursion" while Safari and Chrome throw RangeError | ||
# https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Too_much_recursion | ||
- javascript.builtins.InternalError | ||
- javascript.builtins.InternalError.InternalError | ||
|
||
# Firefox-only Erorr properties | ||
ddbeck marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- javascript.builtins.Error.Error.lineNumber_parameter | ||
- javascript.builtins.Error.lineNumber | ||
- javascript.builtins.Error.Error.fileName_parameter | ||
- javascript.builtins.Error.fileName |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't land without this, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. I've added one with 83a6333.