-
Notifications
You must be signed in to change notification settings - Fork 2k
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 IE data for HTML element APIs #7451
Conversation
@vinyldarkscratch I see that changes remain for api.HTMLImageElement.lowSrc, api.HTMLInputElement.formEncType, and other miscapitalized APIs. Can you double check that all of the remaining changes are correct? |
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.
In the interest of making progress and not creating large merge conflicts, I'm going to back out two of the changes I have questions about, api.HTMLElement.onModule and api.HTMLMenuElement.type. @vinyldarkscratch can you check those out afterwards?
api/HTMLElement.json
Outdated
@@ -2356,7 +2356,7 @@ | |||
"version_added": null | |||
}, | |||
"ie": { | |||
"version_added": null | |||
"version_added": false |
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.
I'm removing this entry in #7484, onModule
isn't a thing.
@@ -68,7 +68,7 @@ | |||
"version_added": "4" | |||
}, | |||
"ie": { | |||
"version_added": "10" | |||
"version_added": "9" |
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 now matches the api.HTMLAudioElement entry itself, makes sense!
api/HTMLMenuElement.json
Outdated
@@ -165,7 +165,7 @@ | |||
"version_added": "8" | |||
}, | |||
"ie": { | |||
"version_added": true | |||
"version_added": "≤6" |
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 change seems a little bit suspect, why is only api.HTMLMenuElement.type updated but not the parent entry or api.HTMLMenuElement.compact? Don't the tests cover those?
This PR updates the Internet Explorer data for various HTML element APIs based upon results from the mdn-bcd-collector project. Results were manually verified for confirmation.