Revision 00308147d33bdd04344e2308036e30c957b64915 authored by Chris Lilley on 03 April 2018, 18:17:39 UTC, committed by GitHub on 03 April 2018, 18:17:39 UTC
[css-fonts-4] Contribute Microsoft tests for Font Variations
2 parent s 09329e8 + 2b27f60
Raw File
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