mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Add XRTest.simulateDeviceConnection()
This commit is contained in:
parent
a89d2c6410
commit
e95b24bfa6
2 changed files with 40 additions and 5 deletions
|
@ -6,9 +6,9 @@
|
|||
|
||||
[Exposed=Window, Pref="dom.webxr.test"]
|
||||
interface XRTest {
|
||||
// // Simulates connecting a device to the system.
|
||||
// // Used to instantiate a fake device for use in tests.
|
||||
// Promise<FakeXRDeviceController> simulateDeviceConnection(FakeXRDeviceInit);
|
||||
// Simulates connecting a device to the system.
|
||||
// Used to instantiate a fake device for use in tests.
|
||||
Promise<FakeXRDeviceController> simulateDeviceConnection(FakeXRDeviceInit init);
|
||||
|
||||
// // Simulates a device being disconnected from the system.
|
||||
// Promise<void> simulateDeviceDisconnection(XRDevice);
|
||||
|
@ -18,3 +18,8 @@ interface XRTest {
|
|||
// // Device API methods.
|
||||
// void simulateUserActivation(Function);
|
||||
};
|
||||
|
||||
dictionary FakeXRDeviceInit {
|
||||
// TODO: Subject to change to match spec changes.
|
||||
required boolean supportsImmersive;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue