blob: bc5483b9670d875b424940cf56d0a5b9d2ca5298 [file] [log] [blame]
<!doctype html>
<!--
Tests that WebXR does not report immersive-vr support when OpenVR is disabled.
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="../resources/webxr_e2e.css">
</head>
<body>
<canvas id="webgl-canvas"></canvas>
<script src="../../../../../../third_party/blink/web_tests/resources/testharness.js"></script>
<script src="../resources/webxr_e2e.js"></script>
<script>
navigator.xr.supportsSession('immersive-vr').then( () => {
assert_unreached("WebXR indicated support for 'immersive-vr'");
}, () => {
done();
});
</script>
</body>
</html>