-
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
Remove RTCIdentityEvent and RTCIdentityErrorEvent #11149
Conversation
36d137b
to
dd9388b
Compare
These were only ever implemented in Firefox and removed in 2015: https://bugzilla.mozilla.org/show_bug.cgi?id=975144 mozilla/gecko-dev@e92b44d The events identityresult, peeridentity, idpassertionerror and idpvalidationerror were also removed then. The data claiming support in Edge 18 for some of this is wrong, confirmed by testing Edge 18 with these tests: https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidentityresult https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidpassertionerror https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidpvalidationerror https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onpeeridentity
dd9388b
to
8343742
Compare
"ie": { | ||
"version_added": false | ||
}, | ||
"opera": [ |
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 data doesn't make any sense, but to be sure I've disconfirmed it in Opera 77 using https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidentityresult.
"version_added": false | ||
}, | ||
"samsunginternet_android": { | ||
"version_added": "6.0" |
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 as implausible as it gets, also disconfirmed with https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidentityresult.
This got bigger than I thought, but this + mdn/content#6109 should cover the same cleanup now. |
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.
Thank you for digging into these! I'm definitely in favor of their removal, and now that the MDN docs have been removed, time to remove the BCD entries!
These were only ever implemented in Firefox and removed in 2015:
https://bugzilla.mozilla.org/show_bug.cgi?id=975144
mozilla/gecko-dev@e92b44d
The events identityresult, peeridentity, idpassertionerror and
idpvalidationerror were also removed then.
The data claiming support in Edge 18 for some of this is wrong,
confirmed by testing Edge 18 with these tests:
https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidentityresult
https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidpassertionerror
https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onidpvalidationerror
https://mdn-bcd-collector.appspot.com/tests/api/RTCPeerConnection/onpeeridentity
The data was added in #987.