-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Expose some NavigatorID members only on Window #220
Conversation
The set of attributes with [Exposed=Window] is the union of attributes NOT exposed on Worker in shipping browsers: Blink: productSub, vendor, vendorSub Edge: appCodeName Gecko: productSub, vendor, vendorSub WebKit: appCodeName, product, productSub, vendor, vendorSub Fixes #216
It almost seems more economical to annotate them the other way around. But anyway, LGTM. |
Yeah, it's 4 vs. 5, and looking at the whole set of NavigatorFoo, |
1b1ab95
to
4a97ada
Compare
I flipped things around, sanity check please? |
Seems alright, though now you've made this I think the original might have been better. Relying on the default |
4a97ada
to
1b1ab95
Compare
Pushing the original commit to master, then :) |
Fixes whatwg#218. See whatwg#220 for migrating to Python 3, the better long-term fix.
The set of attributes with [Exposed=Window] is the union of attributes
NOT exposed on Worker in shipping browsers:
Blink: productSub, vendor, vendorSub
Edge: appCodeName
Gecko: productSub, vendor, vendorSub
WebKit: appCodeName, product, productSub, vendor, vendorSub
Fixes #216