summaryrefslogtreecommitdiffstats
path: root/dom/vr/test/mochitest/test_vrDisplay_onvrdisplayconnect.html
blob: e1912c7c41c966d9da32a8cc506a03ef0143e0ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
  <head>
    <title>VRDisplay onvrdisplayconnect test</title>
    <meta name="timeout" content="long"/>
    <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="VRSimulationDriver.js"></script>
    <script src="WebVRHelpers.js"></script>
    <script src="requestPresent.js"></script>
    <script src="runVRTest.js"></script>
  </head>
  <body>
    <script>

      function eventAfterConnectedTest() {
        async_test(function (test) {
          window.addEventListener("vrdisplayconnect", () => {
            test.done();
          });
        }, "vrdisplayconnect should fire as soon as content listens for it, \
            even if the VR display was already connected.");
      }

      function startTest() {
        promise_test((test) => {
          return attachVRDisplay(test).then(() => {
            return promise_test((test) => {
              return setupVRDisplay(test).then(() => {
                VRSimulationDriver.UpdateVRDisplay();
                eventAfterConnectedTest();
                VRSimulationDriver.UpdateVRDisplay();
              });
            });
          });
        });
      }

      runVRTest(startTest);
    </script>
    <iframe id="iframe1"></iframe>
  </body>
</html>