https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3c59b280a828fa52ee3848a31803bf6c7a886568 authored by Marcos Cáceres on 28 November 2018, 06:20:37 UTC
Match spec + clean up
Tip revision: 3c59b28
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