mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Update web-platform-tests to revision 9a4d479ed1347eb9184abc70d628a6da2297657a
This commit is contained in:
parent
b6cc0f60a9
commit
effeb278b6
120 changed files with 3731 additions and 298 deletions
|
@ -0,0 +1,69 @@
|
|||
<!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>
|
||||
<canvas id="webgl-canvas"></canvas>
|
||||
|
||||
<script>
|
||||
|
||||
let testName = "XRInputSources can be properly added and removed from the "
|
||||
+ "session";
|
||||
|
||||
let fakeDeviceInitParams = TRACKED_IMMERSIVE_DEVICE;
|
||||
|
||||
let testFunction = (session, fakeDeviceController, t) => new Promise((resolve) => {
|
||||
let input_sources = session.inputSources;
|
||||
|
||||
t.step( () => {
|
||||
assert_equals(input_sources.length, 0);
|
||||
});
|
||||
|
||||
let input_source_1 = fakeDeviceController.simulateInputSourceConnection(RIGHT_CONTROLLER);
|
||||
|
||||
session.requestAnimationFrame((time, xrFrame) => {
|
||||
let input_sources = session.inputSources;
|
||||
|
||||
t.step( () => {
|
||||
assert_equals(input_sources.length, 1);
|
||||
assert_equals(input_sources[0].targetRayMode, "tracked-pointer");
|
||||
assert_equals(input_sources[0].handedness, "right");
|
||||
});
|
||||
|
||||
let input_source_2 = fakeDeviceController.simulateInputSourceConnection({
|
||||
handedness: "none",
|
||||
targetRayMode: "gaze",
|
||||
pointerOrigin: VALID_POINTER_TRANSFORM,
|
||||
profiles: []
|
||||
});
|
||||
|
||||
session.requestAnimationFrame((time, xrFrame) => {
|
||||
let input_sources = session.inputSources;
|
||||
|
||||
t.step( () => {
|
||||
assert_equals(input_sources.length, 2);
|
||||
assert_equals(input_sources[1].targetRayMode, "gaze");
|
||||
assert_equals(input_sources[1].handedness, "none");
|
||||
});
|
||||
|
||||
fakeDeviceController.removeInputSource(input_source_1);
|
||||
|
||||
session.requestAnimationFrame((time, xrFrame) => {
|
||||
let input_sources = session.inputSources;
|
||||
|
||||
t.step( () => {
|
||||
assert_equals(input_sources.length, 1);
|
||||
assert_equals(input_sources[0].targetRayMode, "gaze");
|
||||
assert_equals(input_sources[0].handedness, "none");
|
||||
});
|
||||
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
xr_session_promise_test(
|
||||
testName, testFunction, fakeDeviceInitParams, 'immersive-vr');
|
||||
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue