tor-browser

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

managed-configuration.idl (620B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Managed Configuration API (https://wicg.github.io/WebApiDevice/managed_config/)
      5 
      6 [
      7  SecureContext
      8 ] partial interface Navigator {
      9  [SecureContext, SameObject]
     10  readonly attribute NavigatorManagedData managed;
     11 };
     12 
     13 [
     14  SecureContext,
     15  Exposed=Window
     16 ] interface NavigatorManagedData : EventTarget {
     17  // Managed Configuration API.
     18  Promise<record<DOMString, object>> getManagedConfiguration(sequence<DOMString> keys);
     19  attribute EventHandler onmanagedconfigurationchange;
     20 };