Auto merge of #20287 - servo:webvr, r=jdm

Enable more tests, uselessly

This doesn't really do anything, given the gamepad tests don't even parse correctly.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20287)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-03-13 09:52:05 -04:00 committed by GitHub
commit 84ce43284c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 9 additions and 12 deletions

View file

@ -71,6 +71,8 @@ skip: true
skip: false
[fullscreen]
skip: false
[gamepad]
skip: false
[hr-time]
skip: false
[html]

View file

@ -603277,7 +603277,7 @@
"support"
],
"webvr/idlharness.https.html": [
"3505e27e1b2668010bf61f05f6b8a759cf42cece",
"ae515edc7c77c87caff8fa096a0682a12a254e83",
"testharness"
],
"webvr/webvr-disabled-by-feature-policy.https.sub.html": [

View file

@ -0,0 +1 @@
prefs: ["dom.gamepad.enabled:true"]

View file

@ -0,0 +1,4 @@
[idlharness.html]
[Gamepad IDL tests]
expected: FAIL

View file

@ -1 +1 @@
prefs: ["dom.webvr.enabled:true"]
prefs: ["dom.gamepad.enabled:true", "dom.webvr.enabled:true"]

View file

@ -8,12 +8,6 @@
[Navigator interface: attribute vrEnabled]
expected: FAIL
[HTMLIFrameElement interface: attribute allowvr]
expected: FAIL
[Gamepad interface: attribute displayId]
expected: FAIL
[VRDisplay interface: operation requestPresent([object Object\])]
expected: FAIL

View file

@ -203,10 +203,6 @@ partial interface Window {
attribute EventHandler onvrdisplaypresentchange;
};
partial interface HTMLIFrameElement {
attribute boolean allowvr;
};
partial interface Gamepad {
readonly attribute unsigned long displayId;
};