blob: 020967fdbbadea5e57cdbe8f145f92f2ec555679 [file] [log] [blame]
<!doctype html>
<!--
Used to test that the promise returned by WebVR's requestPresent rejects if
the DON flow is canceled.
-->
<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/webvr_boilerplate.js"></script>
<script>
var t = async_test("Presentation promise is rejected after DON canceled");
function onVrRequestPresentWithDon() {
vrDisplay.requestPresent([{source: webglCanvas}]).then( () => {
t.step( () => {
assert_unreached("requestPresent promise resolved");
});
}, () => {
// Do nothing when the promise is rejected
}).then( () => {
t.done();
});
}
webglCanvas.onclick = onVrRequestPresentWithDon;
</script>
</body>
</html>