https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f31ef37b39dad03d8ba2fcfff0265c662c3bcd8c authored by Bernard Aboba on 02 April 2018, 17:37:00 UTC
Bring RTCCertificate interface up to date with Candidate Recommendation
Tip revision: f31ef37
storage.idl
// GENERATED CONTENT - DO NOT EDIT
// Content of this file was automatically extracted from the Storage spec.
// See https://storage.spec.whatwg.org/

[SecureContext]
interface mixin NavigatorStorage {
  readonly attribute StorageManager storage;
};
Navigator includes NavigatorStorage;
WorkerNavigator includes NavigatorStorage;

[SecureContext,
 Exposed=(Window,Worker)]
interface StorageManager {
  Promise<boolean> persisted();
  [Exposed=Window] Promise<boolean> persist();

  Promise<StorageEstimate> estimate();
};

dictionary StorageEstimate {
  unsigned long long usage;
  unsigned long long quota;
};
back to top