-
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 Oculus Browser to browsers, and compatibility data for api/A* #12642
Changes from all commits
6df5f56
356b5ad
fbb8d28
c0a8b4f
d5d846b
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 |
---|---|---|
|
@@ -23,6 +23,11 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "6.0", | ||
"partial_implementation": true, | ||
"notes": "<code>Accelerometer</code> is defined but it never generates any readings." | ||
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. This is a case where you'll probably want to show partial and a note on the members of the interface too. Otherwise, a reader can go to the page for |
||
}, | ||
"opera": { | ||
"version_added": "54" | ||
}, | ||
|
@@ -72,6 +77,9 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "6.0" | ||
}, | ||
"opera": { | ||
"version_added": "54" | ||
}, | ||
|
@@ -121,6 +129,9 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "6.0" | ||
}, | ||
"opera": { | ||
"version_added": "54" | ||
}, | ||
|
@@ -170,6 +181,9 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "6.0" | ||
}, | ||
"opera": { | ||
"version_added": "54" | ||
}, | ||
|
@@ -219,6 +233,9 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "6.0" | ||
}, | ||
"opera": { | ||
"version_added": "54" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,18 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"flags": [ | ||
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. nit: it's not codified anywhere and ought to be, but it's conventional to order this: added, removed, partial, notes, flags (or near enough to that). |
||
{ | ||
"type": "preference", | ||
"name": "#enable-experimental-web-platform-features", | ||
"value_to_set": "Enabled" | ||
} | ||
], | ||
"version_added": "5.0", | ||
"partial_implementation": true, | ||
"notes": "<code>AmbientLightSensor</code> is defined but it never generates any readings." | ||
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. I would at a minimum mark as partially implemented. Same for any other sensors that are defined but don't work. Though I think potentially while it's still flagged just leave it as version_added false. And then maybe once it's unflagged a decision could be made on how to represent it. Potentially could set version_added false but leave the note. Not sure what's best, one of the maintainers will be better placed to make that decision. 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. I would say as a web developer if it straight up doesn't work and is still flagged the partial with flag is pretty useless information. Once it's unflagged and I can find the interface a note (+ optionally a partial implementation boolean) would be very useful to explain the odd behaviour. 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. I think partial is the right call here. If the interface exists, then it'll complicate feature detection; showing |
||
}, | ||
"opera": { | ||
"version_added": "43", | ||
"flags": [ | ||
|
@@ -107,6 +119,9 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "5.0" | ||
}, | ||
"opera": { | ||
"version_added": "43" | ||
}, | ||
|
@@ -158,6 +173,11 @@ | |
"ie": { | ||
"version_added": false | ||
}, | ||
"oculus": { | ||
"version_added": "5.0", | ||
"partial_implementation": true, | ||
"notes": "<code>illuminance</code> always returns <code>null</code>." | ||
}, | ||
"opera": { | ||
"version_added": "43", | ||
"notes": "In Opera 66, this method stopped returning floats and returned integers to avoid fingerprinting." | ||
|
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 know you're not there yet alphabetically, but I'd expect a note consistent with this to appear on the ancestor interface property and method too (i.e., the places where you'd actually try to get the readings).