https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f941f71d5aae723c2204aa8c1024280b9ecab055 authored by Sam Goto on 18 December 2018, 20:56:38 UTC
Idle Detection API: Prototype
Tip revision: f941f71
navigator_xr_requestDevice_no_device.https.html
<!DOCTYPE html>
<body>
  <script src=/resources/testharness.js></script>
  <script src=/resources/testharnessreport.js></script>
  <script src="resources/webxr_util.js"></script>

  <script>
    promise_test( (t) => {
      return promise_rejects(t, 'NotFoundError', navigator.xr.requestDevice());
    }, "navigator.xr.requestDevice properly rejects when there are 0 devices");
  </script>
</body>
back to top