-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Update Chromium data for tabs Web Extensions interface #23892
Update Chromium data for tabs Web Extensions interface #23892
Conversation
This PR updates and corrects version values for Chromium (Chrome, Opera, Samsung Internet, WebView Android) for the `tabs` Web Extensions interface. This sets the feature(s) to a version range based upon the date that the feature was added to BCD with the intent of replacing `true` values with ranged values to eliminate `true` values from BCD. Commit/PR Adding the Feature: mdn#512, mdn#469, mdn#446
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.
@queengooborg FYI, given the time it was taking to crosscheck these changes with the referenced PR, my review has been largely limited to confirming that the updated version number is consistent with the PR dates.
@@ -3793,7 +3772,7 @@ | |||
"mdn_url": "https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/API/tabs/sendMessage", | |||
"support": { | |||
"chrome": { | |||
"version_added": true | |||
"version_added": "≤41" |
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.
@queengooborg typo? Should this also be 61
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.
sendMessage.options.frameId
is marked as implemented in 41, so the sendMessage
feature had to have been implemented in at least Chrome 41!
@@ -3961,7 +3934,7 @@ | |||
"mdn_url": "https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/API/tabs/update", | |||
"support": { | |||
"chrome": { | |||
"version_added": true | |||
"version_added": "≤18" |
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.
@queengooborg where did this come from? Doesn't seem to be covered in the referenced PR.
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.
This is to maintain consistency with the updateProperties_openerTabId_parameter
subfeature!
This PR updates and corrects version values for Chromium (Chrome, Opera, Samsung Internet, WebView Android) for the
tabs
Web Extensions interface. This sets the feature(s) to a version range based upon the date that the feature was added to BCD with the intent of replacingtrue
values with ranged values to eliminatetrue
values from BCD.Commit/PR Adding the Feature: #512, #469, #446