Files
servo/components/script_bindings/webidls/IDBFactory.webidl
Gregory Terzian 9cd480f7ee indexeddb: implement databases concept(detete and databases method) (#41322)
Moves the concept of databases closer to the 3.0 spec, by implementing
the delete functionality, and the method returning current databases to
script.

Testing: WPT tests with new passes
Fixes: The "Implement databases deletion and `databases`" item of
https://github.com/servo/servo/issues/40983

---------

Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
2025-12-23 14:09:48 +00:00

32 lines
1.0 KiB
Plaintext

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/*
* The origin of this IDL file is
* https://www.w3.org/TR/IndexedDB/#idbfactory
*
*/
// https://w3c.github.io/IndexedDB/#idbfactory
partial interface mixin WindowOrWorkerGlobalScope {
[Pref="dom_indexeddb_enabled", SameObject] readonly attribute IDBFactory indexedDB;
};
// https://w3c.github.io/IndexedDB/#idbfactory
[Pref="dom_indexeddb_enabled", Exposed=(Window,Worker)]
interface IDBFactory {
[NewObject, Throws] IDBOpenDBRequest open(DOMString name,
optional [EnforceRange] unsigned long long version);
[NewObject, Throws] IDBOpenDBRequest deleteDatabase(DOMString name);
Promise<sequence<IDBDatabaseInfo>> databases();
[Throws] short cmp(any first, any second);
};
// https://w3c.github.io/IndexedDB/#dictdef-idbdatabaseinfo
dictionary IDBDatabaseInfo {
DOMString name;
unsigned long long version;
};