gecko-dev/testing/web-platform/tests/webxr/xrSession_cancelAnimationFrame_invalidhandle.https.html
Brandon Jones 05ec653424 Bug 1531929 [wpt PR 15507] - Move outputContext from XRSession to XRRenderState, a=testonly
Automatic update from web-platform-tests
Move outputContext from XRSession to XRRenderState

This requires all sessions that were previously setting an
outputContext in the requestSession call to move that assignment to an
updateRenderState call post-session-creation instead. Additionally,
"inline" sessions can now be created without an outputContext but must
still have one assigned to them before any requestAnimationFrame
callbacks will be processed.

Bug: 928417
Change-Id: I469fab8c3f641870387f2f92aee52182016efe37
Reviewed-on: https://chromium-review.googlesource.com/c/1476097
Commit-Queue: Brandon Jones <bajones@chromium.org>
Reviewed-by: Brian Sheedy <bsheedy@chromium.org>
Reviewed-by: Klaus Weidner <klausw@chromium.org>
Cr-Commit-Position: refs/heads/master@{#636557}

--

wpt-commits: b7ddf2f33d3ce50ffbec25fbcc4806afba1d395a
wpt-pr: 15507
2019-04-01 14:42:24 +01:00

45 lines
1.6 KiB
HTML

<!DOCTYPE html>
<body>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src="resources/webxr_util.js"></script>
<canvas></canvas>
<script>
let immersiveTestName = "XRSession cancelAnimationFrame does not have unexpected "
+ "behavior when given invalid handles on immersive testSession";
let nonImmersiveTestName = "XRSession cancelAnimationFrame does not have unexpected "
+ "behavior when given invalid handles on non-immersive testSession";
let fakeDeviceInitParams = { supportsImmersive:true };
let immersiveSessionOptions = { mode: 'immersive-vr' };
let nonImmersiveSessionOptions = { mode: 'inline' };
let testFunction = (testSession) => new Promise((resolve) => {
let counter = 0;
function onFrame(time, vrFrame) {
if(counter <= 10) {
testSession.requestAnimationFrame(onFrame);
} else {
resolve();
}
counter++;
}
let handle = testSession.requestAnimationFrame(onFrame);
testSession.cancelAnimationFrame(0);
testSession.cancelAnimationFrame(-1);
testSession.cancelAnimationFrame(handle + 1);
testSession.cancelAnimationFrame(handle - 1);
testSession.cancelAnimationFrame(0.5);
testSession.cancelAnimationFrame(null);
});
xr_session_promise_test(
immersiveTestName, testFunction, fakeDeviceInitParams, immersiveSessionOptions);
xr_session_promise_test(
nonImmersiveTestName, testFunction, fakeDeviceInitParams, nonImmersiveSessionOptions);
</script>
</body>