summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webxr/navigator_xr_sameObject.https.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webxr/navigator_xr_sameObject.https.html')
-rw-r--r--testing/web-platform/tests/webxr/navigator_xr_sameObject.https.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webxr/navigator_xr_sameObject.https.html b/testing/web-platform/tests/webxr/navigator_xr_sameObject.https.html
new file mode 100644
index 0000000000..2c3ea541a9
--- /dev/null
+++ b/testing/web-platform/tests/webxr/navigator_xr_sameObject.https.html
@@ -0,0 +1,32 @@
+<!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 = "Navigator.xr meets [SameObject] requirement";
+
+let testFunction = function(session, fakeDeviceController, t) {
+ let xr = navigator.xr;
+
+ return new Promise((resolve) => {
+ // Make sure the navigator.xr object is the same on each frame.
+ session.requestAnimationFrame((time, xrFrame) => {
+ t.step(() => {
+ assert_equals(navigator.xr, xr, "navigator.xr returns the same object");
+ });
+ session.requestAnimationFrame((time, xrFrame) => {
+ t.step(() => {
+ assert_equals(navigator.xr, xr,
+ "naivgator.xr returns the same object");
+ });
+ resolve();
+ });
+ });
+ });
+};
+
+xr_session_promise_test(
+ testName, testFunction, TRACKED_IMMERSIVE_DEVICE, 'immersive-vr');
+</script>