mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
14 lines
423 B
Plaintext
14 lines
423 B
Plaintext
#import <DOM/Event.idl>
|
|
#import <WebXR/XRSession.idl>
|
|
|
|
// https://immersive-web.github.io/webxr/#xrsessionevent-interface
|
|
[Experimental, SecureContext, Exposed=Window]
|
|
interface XRSessionEvent : Event {
|
|
constructor(DOMString type, XRSessionEventInit eventInitDict);
|
|
[SameObject] readonly attribute XRSession session;
|
|
};
|
|
|
|
[Experimental] dictionary XRSessionEventInit : EventInit {
|
|
required XRSession session;
|
|
};
|