blob: 6273284bf2f7399f1d3ea8a0f681e5463cbde5d4 [file] [log] [blame]
<!doctype html>
<!--
Used to test that the promise returned by WebXR's requestSession does not get
resolved or rejected while the DON flow is active.
-->
<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 src="../resources/webxr_boilerplate.js"></script>
<script>
var t = async_test("Presentation promise is unresolved during DON flow");
function onImmersiveRequestWithDon() {
xrDevice.requestSession({immersive: true}).then( (session) => {
t.step( () => {
assert_unreached("requestSession promise resolved");
});
}, () => {
t.step( () => {
assert_unreached("requestSession promise rejected");
});
});
window.setTimeout( () => {t.done();}, 2000);
}
webglCanvas.onclick = onImmersiveRequestWithDon;
</script>
</body>
</html>