tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

webxr-dom-overlays.idl (660B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: WebXR DOM Overlays Module (https://immersive-web.github.io/dom-overlays/)
      5 
      6 partial interface mixin GlobalEventHandlers {
      7  attribute EventHandler onbeforexrselect;
      8 };
      9 
     10 partial dictionary XRSessionInit {
     11  XRDOMOverlayInit? domOverlay;
     12 };
     13 
     14 partial interface XRSession {
     15  readonly attribute XRDOMOverlayState? domOverlayState;
     16 };
     17 
     18 dictionary XRDOMOverlayInit {
     19  required Element root;
     20 };
     21 
     22 enum XRDOMOverlayType {
     23  "screen",
     24  "floating",
     25  "head-locked"
     26 };
     27 
     28 dictionary XRDOMOverlayState {
     29  XRDOMOverlayType type;
     30 
     31 };