From d836c39505296389c5a1035f99a43198ab21cf4f Mon Sep 17 00:00:00 2001 From: Ari Chivukula Date: Mon, 6 Nov 2023 12:39:58 -0500 Subject: [PATCH] Update idl.md --- idl.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/idl.md b/idl.md index b608295..a4b4e08 100644 --- a/idl.md +++ b/idl.md @@ -5,15 +5,13 @@ partial interface Document { dictionary StorageAccessTypes { boolean all = false; - boolean estimate = false; - boolean persisted = false; - boolean persist = false; boolean sessionStorage = false; boolean localStorage = false; boolean indexedDB = false; boolean locks = false; boolean caches = false; boolean getDirectory = false; + boolean estimate = false; boolean createObjectURL = false; boolean revokeObjectURL = false; boolean BroadcastChannel = false; @@ -21,15 +19,13 @@ dictionary StorageAccessTypes { }; interface StorageAccessHandle { - Promise estimate(); - Promise persisted(); - Promise persist(); readonly attribute Storage sessionStorage; readonly attribute Storage localStorage; readonly attribute IDBFactory indexedDB; readonly attribute LockManager locks; readonly attribute CacheStorage caches; Promise getDirectory(); + Promise estimate(); DOMString createObjectURL((Blob or MediaSource) obj); undefined revokeObjectURL(DOMString url); };