summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webxr/xrFrame_session_sameObject.https.html
blob: d1d4beb16473fd123d24205c20fc5ade4a4c5cd0 (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
<!DOCTYPE html>
<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>
let testName = "XRFrame.session meets [SameObject] requirement";

let testFunction = function(session, fakeDeviceController, t) {
  return new Promise((resolve) => {
    session.requestAnimationFrame((time, xrFrame) => {
      let session = xrFrame.session;
      t.step(() => {
        assert_equals(session, xrFrame.session,
          "XRFrame.session returns the same object.");
      });
      resolve();
    });
  });
};

xr_session_promise_test(
  testName, testFunction, TRACKED_IMMERSIVE_DEVICE, 'immersive-vr');
</script>