OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <meta charset=utf-8> | |
5 <title>WebVR IDL test</title> | |
6 <link rel="help" href="https://w3c.github.io/webvr/"> | |
7 | |
8 <script src=/js-test-resources/testharness.js></script> | |
9 <script src=/js-test-resources/testharnessreport.js></script> | |
10 <script src=/js-test-resources/WebIDLParser.js></script> | |
11 <script src=/js-test-resources/idlharness.js></script> | |
12 <script src=./util/fetch.js></script> | |
Lei Lei
2016/12/20 06:43:29
IDL file can be within idlharness.html, so fetch.j
bsheedy
2016/12/20 18:19:08
Done.
| |
13 </head> | |
14 <body> | |
15 <h1 class="instructions">Description</h1> | |
16 <p class="instructions"> | |
17 This test verifies that implementations of the WebVR API match its WebIDL definition. | |
18 </p> | |
19 | |
20 <div id='log'></div> | |
21 | |
22 <script> | |
23 setup( () => { | |
24 fetch('WebVR.idl').then( (response) => { | |
25 if (!response.ok) throw new Error('IDL fetch failed'); | |
26 return response.text(); | |
27 }).then( (idls) => { | |
28 var idl_array = new IdlArray(); | |
29 idl_array.add_untested_idls("[PrimaryGlobal] interface Window {};"); | |
30 idl_array.add_untested_idls("interface Navigator {};"); | |
31 idl_array.add_untested_idls("interface ArrayBuffer {};"); | |
32 idl_array.add_untested_idls("interface HTMLMediaElement {};"); | |
33 idl_array.add_untested_idls("interface Event {};"); | |
34 idl_array.add_untested_idls("interface EventTarget {};"); | |
35 idl_array.add_untested_idls("interface HTMLIFrameElement {};"); | |
36 idl_array.add_untested_idls("interface Gamepad {};"); | |
37 | |
38 idl_array.add_idls(idls); | |
39 | |
40 idl_array.test(); | |
41 done(); | |
42 }); | |
43 }, {explicit_done: true}); | |
44 </script> | |
45 </body> | |
46 </html> | |
OLD | NEW |