https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 933c42829a0b57ae83016a14eaafb152d37d343b authored by Yoav Weiss on 21 December 2018, 21:00:08 UTC
Fix resource-timing.html document.domain test
Tip revision: 933c428
xrSession_end.https.html
<!DOCTYPE html>
<body>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
  <script src="resources/webxr_util.js"></script>
  <canvas></canvas>

  <script>
    const immersivetestName = "end event fires when immersive session ends";
    const nonimmersiveTestName = "end event fires when non-immersive session ends";
    let watcherDone = new Event("watcherdone");
    const fakeDeviceInitParams = { supportsImmersive:true };

    const immersiveSessionOptions = { immersive: true };
    const nonImmersiveSessionOptions = { outputContext: getOutputContext() };

    let testFunction = function(session, testDeviceController, t) {
      let eventWatcher = new EventWatcher(t, session, ["end", "watcherdone"]);
      let eventPromise = eventWatcher.wait_for(["end", "watcherdone"]);

      function onSessionEnd(event) {
        t.step( () => {
          assert_equals(event.session, session);
          session.dispatchEvent(watcherDone);
        });
      }
      session.addEventListener("end", onSessionEnd, false);
      session.end();

      return eventPromise;
    };

    xr_session_promise_test(immersivetestName, testFunction,
      fakeDeviceInitParams, immersiveSessionOptions);
    xr_session_promise_test(nonimmersiveTestName, testFunction,
      fakeDeviceInitParams, nonImmersiveSessionOptions);
  </script>
</body>
back to top