-
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
Add compat data for EventType #1899
Changes from 5 commits
db556f5
9f43440
ee20100
3e24080
c533cdb
119bf97
19055b7
81c2de5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,104 @@ | ||||||||||||||||||||||
{ | ||||||||||||||||||||||
"api": { | ||||||||||||||||||||||
"EventType": { | ||||||||||||||||||||||
"__compat": { | ||||||||||||||||||||||
"mdn_url": "https://developer.mozilla.org/docs/Web/Events", | ||||||||||||||||||||||
"support": { | ||||||||||||||||||||||
"chrome": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"chrome_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"edge": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"edge_mobile": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"firefox": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"firefox_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"ie": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"opera": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"opera_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"safari": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"safari_ios": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"samsunginternet_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"webview_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"status": { | ||||||||||||||||||||||
"experimental": false, | ||||||||||||||||||||||
"standard_track": true, | ||||||||||||||||||||||
"deprecated": false | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"click": { | ||||||||||||||||||||||
"mdn_url": "https://developer.mozilla.org/docs/Web/API/Events/click", | ||||||||||||||||||||||
"support": { | ||||||||||||||||||||||
"chrome": { | ||||||||||||||||||||||
"version_added": true | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"chrome_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"edge": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"edge_mobile": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"firefox": { | ||||||||||||||||||||||
"version_added": true | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"firefox_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"ie": { | ||||||||||||||||||||||
"version_added": true | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"opera": { | ||||||||||||||||||||||
"version_added": true | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"opera_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"safari": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"safari_ios": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"samsunginternet_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"webview_android": { | ||||||||||||||||||||||
"version_added": null | ||||||||||||||||||||||
} | ||||||||||||||||||||||
}, | ||||||||||||||||||||||
"status": { | ||||||||||||||||||||||
"experimental": false, | ||||||||||||||||||||||
"standard_track": true, | ||||||||||||||||||||||
"deprecated": false | ||||||||||||||||||||||
} | ||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
"on_disabled_elements": {
"__compat": {
"description": "On disabled form elements",
"support": {
"chrome": {
"version_added": true,
"partial_implementation": true,
"notes": "Only works for <code><textarea></code> elements and some <code><input></code> element types."
},
"chrome_android": {
"version_added": null
},
"edge": {
"version_added": false
},
"edge_mobile": {
"version_added": false
},
"firefox": {
"version_added": false
},
"firefox_android": {
"version_added": false
},
"ie": {
"version_added": true,
"partial_implementation": true,
"notes": "Internet Explorer only triggers the <code>click</code> event on <code><input></code> elements of type <code>checkbox</code> or <code>radio</code> when the element is double-clicked."
},
"opera": {
"version_added": true,
"partial_implementation": true,
"notes": "Only works for <code><textarea></code> elements and some <code><input></code> element types."
},
"opera_android": {
"version_added": null
},
"safari": {
"version_added": null
},
"safari_ios": {
"version_added": null
},
"samsunginternet_android": {
"version_added": null
},
"webview_android": {
"version_added": null
}
},
"status": {
"experimental": false,
"standard_track": true,
"deprecated": false
}
}
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why will I add this to the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It must be on the same level as the Also, stuff like this has been made into sub-features in the past: browser-compat-data/api/NavigatorConcurrentHardware.json Lines 52 to 56 in 5133d14
browser-compat-data/html/elements/html.json Lines 110 to 114 in 0fd82d0
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes I understand but why add it? This is not an event. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because it’s part of the current documentation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, thank you I had not understood the why of how. Thank you. I will add it. |
||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} | ||||||||||||||||||||||
} |
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.
The contents of
click
must be also contained inside a__compat
block, that’s why the build is failing.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.
fixed.