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

Update support data for Chrome Android (API's A through F) #18359

Closed
wants to merge 2 commits into from

Conversation

jugglinmike
Copy link
Contributor

Summary

These changes were generated procedurally by the mdn-bcd-collector project [1] using data collected from Chrome for Android [2].

[1] https://github.com/foolip/mdn-bcd-collector
commit 06ea2714451c548934849011e4106b3175adfab5
[2] https://github.com/foolip/mdn-bcd-results
commit f37e6db1da24143bf039ed8e269c9f234d2b4e90

Test results and supporting details

Related issues

This changeset is based on the one originally submitted via #17908. It uses compatibility data which has been collected since that patch was created, and it includes only a subset of the changes generated by the mdn-bcd-collector.

These changes were generated procedurally by the mdn-bcd-collector
project [1] using data collected from Chrome for Android [2].

[1] https://github.com/foolip/mdn-bcd-collector
    commit 06ea2714451c548934849011e4106b3175adfab5
[2] https://github.com/foolip/mdn-bcd-results
    commit f37e6db1da24143bf039ed8e269c9f234d2b4e90
The commit "Enable drag and drop on Android platform by default" was
released in version 54:

https://chromereleases.googleblog.com/2016/10/chrome-for-android-update.html
@github-actions github-actions bot added the data:api Compat data for Web APIs. https://developer.mozilla.org/docs/Web/API label Dec 2, 2022
@github-actions
Copy link

This pull request has merge conflicts that must be resolved before it can be merged.

@@ -7,7 +7,9 @@
"chrome": {
"version_added": "104"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -8,7 +8,9 @@
"chrome": {
"version_added": "74"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://mdn-bcd-collector.appspot.com/tests/api/CSPViolationReportBody returns false on desktop as well. The problem here was the use of [NoInterfaceObject] and was recently fixed in https://bugs.chromium.org/p/chromium/issues/detail?id=1122656

We should maybe still update this data somehow, but it's not a difference between desktop and Android, so I suggest splitting out this change.

@@ -8,7 +8,9 @@
"chrome": {
"version_added": "72"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -8,7 +8,9 @@
"chrome": {
"version_added": "69"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -1636,7 +1636,9 @@
"chrome": {
"version_added": "61"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://mdn-bcd-collector.appspot.com/tests/api/DOMMatrixReadOnly/transform says no support in Chrome desktop as well. And in fact for Firefox and Safari. This appears to be a ghost feature, I can't find any information about it. Should be removed from BCD.

@@ -3671,7 +3685,9 @@
"chrome": {
"version_added": "1"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a bad test, removing it in foolip/mdn-bcd-collector#2640.

@@ -246,7 +246,9 @@
"chrome": {
"version_added": "81"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The desktop data is wrong here, this property isn't in Chromium.

@@ -1128,7 +1130,9 @@
"chrome": {
"version_added": "81"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The desktop data is wrong here, this property isn't in Chromium.

@@ -8,7 +8,9 @@
"chrome": {
"version_added": "7"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://mdn-bcd-collector.appspot.com/tests/api/FileSystem says no support on desktop either, so I don't trust this. I'll assume all of the FileSystem* changes that follow are similarly suspect and skip over them in review.

@@ -7,7 +7,9 @@
"chrome": {
"version_added": "103"
},
"chrome_android": "mirror",
"chrome_android": {
"version_added": false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@queengooborg
Copy link
Contributor

By the way, due to how many different APIs this touches, it would be much better to split it into much, MUCH smaller chunks, such as per API or interface grouping (ex. all picture-in-picture features). Additionally, this will help ensure that this doesn't keep on running to merge conflicts during the review, and each bit can be merged much quicker.

@foolip
Copy link
Contributor

foolip commented Jan 16, 2023

Since the verified correct changes of this and the other 3 PRs are the minority of the changes, I'd actually suggest just splitting those into a single a trivial-to-merge PR. The rest is basically bookkeeping for things we need to do to avoid these incorrect changes showing up in the future again.

@jugglinmike
Copy link
Contributor Author

Thank you, @foolip! I expect to have time to help wrap this up (along with gh-18360, gh-18361, and gh-18362) in early February.

@github-actions github-actions bot added the merge conflicts 🚧 This PR needs to merge latest "main" branch to resolve a merge conflict or other issue. label Mar 3, 2023
@github-actions
Copy link

github-actions bot commented Mar 3, 2023

This pull request has merge conflicts that must be resolved before it can be merged.

@Elchi3
Copy link
Member

Elchi3 commented Jun 22, 2023

Given how much iteration there has been on the collector project since this PR was opened (December 2022), I am going to close this.

@Elchi3 Elchi3 closed this Jun 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
data:api Compat data for Web APIs. https://developer.mozilla.org/docs/Web/API merge conflicts 🚧 This PR needs to merge latest "main" branch to resolve a merge conflict or other issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants