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