diff options
Diffstat (limited to 'testing/web-platform/tests/interfaces/storage-access.idl')
-rw-r--r-- | testing/web-platform/tests/interfaces/storage-access.idl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/web-platform/tests/interfaces/storage-access.idl b/testing/web-platform/tests/interfaces/storage-access.idl new file mode 100644 index 0000000000..fff583e098 --- /dev/null +++ b/testing/web-platform/tests/interfaces/storage-access.idl @@ -0,0 +1,9 @@ +// GENERATED CONTENT - DO NOT EDIT +// Content was automatically extracted by Reffy into webref +// (https://github.com/w3c/webref) +// Source: The Storage Access API (https://privacycg.github.io/storage-access/) + +partial interface Document { + Promise<boolean> hasStorageAccess(); + Promise<undefined> requestStorageAccess(); +}; |