mirror of
https://github.com/servo/servo.git
synced 2025-06-18 22:34:30 +01:00
* Initial interface implementation Signed-off-by: Daniel Adams <msub2official@gmail.com> * Add event handler Signed-off-by: Daniel Adams <msub2official@gmail.com> * Update FakeXRDevice interface Signed-off-by: Daniel Adams <msub2official@gmail.com> * Implement reset event Signed-off-by: Daniel Adams <msub2official@gmail.com> * Downcast bounded spaces Signed-off-by: Daniel Adams <msub2official@gmail.com> * Update expectations Signed-off-by: Daniel Adams <msub2official@gmail.com> * Update webxr commit Signed-off-by: Daniel Adams <msub2official@gmail.com> * fmt Signed-off-by: Daniel Adams <msub2official@gmail.com> * Adjust DomRoot usage Signed-off-by: Daniel Adams <msub2official@gmail.com> * fmt Signed-off-by: Daniel Adams <msub2official@gmail.com> * Update manifest Signed-off-by: Daniel Adams <msub2official@gmail.com> --------- Signed-off-by: Daniel Adams <msub2official@gmail.com>
17 lines
733 B
Text
17 lines
733 B
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://immersive-web.github.io/webxr/#xrreferencespaceevent-interface
|
|
|
|
[SecureContext, Exposed=Window, Pref="dom.webxr.enabled"]
|
|
interface XRReferenceSpaceEvent : Event {
|
|
[Throws] constructor(DOMString type, XRReferenceSpaceEventInit eventInitDict);
|
|
[SameObject] readonly attribute XRReferenceSpace referenceSpace;
|
|
[SameObject] readonly attribute XRRigidTransform? transform;
|
|
};
|
|
|
|
dictionary XRReferenceSpaceEventInit : EventInit {
|
|
required XRReferenceSpace referenceSpace;
|
|
XRRigidTransform? transform = null;
|
|
};
|