summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webxr/xrDevice_isSessionSupported_immersive_unsupported.https.html
blob: 41ae338787e45b13ff42efae752eb8a39f5ffbc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<body>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
  <script src="resources/webxr_util.js"></script>
  <script src="resources/webxr_test_constants.js"></script>
  <script>
    xr_promise_test(
      "isSessionSupported resolves to false when options not supported",
      (t) => {
      return navigator.xr.test.simulateDeviceConnection(VALID_NON_IMMERSIVE_DEVICE)
        .then( (controller) => {
          return navigator.xr.isSessionSupported('immersive-vr').then((supported) => {
            t.step(() => {
              assert_false(supported);
            });
          });
        });
    });
  </script>
</body>