mirror of
https://github.com/servo/servo.git
synced 2025-06-30 20:13:39 +01:00
207 lines
6.7 KiB
Text
207 lines
6.7 KiB
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content of this file was automatically extracted from the Indexed Database API spec.
|
|
// See https://w3c.github.io/IndexedDB/
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBRequest : EventTarget {
|
|
readonly attribute any result;
|
|
readonly attribute DOMException? error;
|
|
readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
|
|
readonly attribute IDBTransaction? transaction;
|
|
readonly attribute IDBRequestReadyState readyState;
|
|
|
|
// Event handlers:
|
|
attribute EventHandler onsuccess;
|
|
attribute EventHandler onerror;
|
|
};
|
|
|
|
enum IDBRequestReadyState {
|
|
"pending",
|
|
"done"
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBOpenDBRequest : IDBRequest {
|
|
// Event handlers:
|
|
attribute EventHandler onblocked;
|
|
attribute EventHandler onupgradeneeded;
|
|
};
|
|
|
|
[Exposed=(Window,Worker),
|
|
Constructor(DOMString type, optional IDBVersionChangeEventInit eventInitDict)]
|
|
interface IDBVersionChangeEvent : Event {
|
|
readonly attribute unsigned long long oldVersion;
|
|
readonly attribute unsigned long long? newVersion;
|
|
};
|
|
|
|
dictionary IDBVersionChangeEventInit : EventInit {
|
|
unsigned long long oldVersion = 0;
|
|
unsigned long long? newVersion = null;
|
|
};
|
|
|
|
partial interface WindowOrWorkerGlobalScope {
|
|
[SameObject] readonly attribute IDBFactory indexedDB;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBFactory {
|
|
[NewObject] IDBOpenDBRequest open(DOMString name,
|
|
optional [EnforceRange] unsigned long long version);
|
|
[NewObject] IDBOpenDBRequest deleteDatabase(DOMString name);
|
|
|
|
short cmp(any first, any second);
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBDatabase : EventTarget {
|
|
readonly attribute DOMString name;
|
|
readonly attribute unsigned long long version;
|
|
readonly attribute DOMStringList objectStoreNames;
|
|
|
|
[NewObject] IDBTransaction transaction((DOMString or sequence<DOMString>) storeNames,
|
|
optional IDBTransactionMode mode = "readonly");
|
|
void close();
|
|
|
|
[NewObject] IDBObjectStore createObjectStore(DOMString name,
|
|
optional IDBObjectStoreParameters options);
|
|
void deleteObjectStore(DOMString name);
|
|
|
|
// Event handlers:
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler onclose;
|
|
attribute EventHandler onerror;
|
|
attribute EventHandler onversionchange;
|
|
};
|
|
|
|
dictionary IDBObjectStoreParameters {
|
|
(DOMString or sequence<DOMString>)? keyPath = null;
|
|
boolean autoIncrement = false;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBObjectStore {
|
|
attribute DOMString name;
|
|
readonly attribute any keyPath;
|
|
readonly attribute DOMStringList indexNames;
|
|
[SameObject] readonly attribute IDBTransaction transaction;
|
|
readonly attribute boolean autoIncrement;
|
|
|
|
[NewObject] IDBRequest put(any value, optional any key);
|
|
[NewObject] IDBRequest add(any value, optional any key);
|
|
[NewObject] IDBRequest delete(any query);
|
|
[NewObject] IDBRequest clear();
|
|
[NewObject] IDBRequest get(any query);
|
|
[NewObject] IDBRequest getKey(any query);
|
|
[NewObject] IDBRequest getAll(optional any query,
|
|
optional [EnforceRange] unsigned long count);
|
|
[NewObject] IDBRequest getAllKeys(optional any query,
|
|
optional [EnforceRange] unsigned long count);
|
|
[NewObject] IDBRequest count(optional any query);
|
|
|
|
[NewObject] IDBRequest openCursor(optional any query,
|
|
optional IDBCursorDirection direction = "next");
|
|
[NewObject] IDBRequest openKeyCursor(optional any query,
|
|
optional IDBCursorDirection direction = "next");
|
|
|
|
IDBIndex index(DOMString name);
|
|
|
|
[NewObject] IDBIndex createIndex(DOMString name,
|
|
(DOMString or sequence<DOMString>) keyPath,
|
|
optional IDBIndexParameters options);
|
|
void deleteIndex(DOMString name);
|
|
};
|
|
|
|
dictionary IDBIndexParameters {
|
|
boolean unique = false;
|
|
boolean multiEntry = false;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBIndex {
|
|
attribute DOMString name;
|
|
[SameObject] readonly attribute IDBObjectStore objectStore;
|
|
readonly attribute any keyPath;
|
|
readonly attribute boolean multiEntry;
|
|
readonly attribute boolean unique;
|
|
|
|
[NewObject] IDBRequest get(any query);
|
|
[NewObject] IDBRequest getKey(any query);
|
|
[NewObject] IDBRequest getAll(optional any query,
|
|
optional [EnforceRange] unsigned long count);
|
|
[NewObject] IDBRequest getAllKeys(optional any query,
|
|
optional [EnforceRange] unsigned long count);
|
|
[NewObject] IDBRequest count(optional any query);
|
|
|
|
[NewObject] IDBRequest openCursor(optional any query,
|
|
optional IDBCursorDirection direction = "next");
|
|
[NewObject] IDBRequest openKeyCursor(optional any query,
|
|
optional IDBCursorDirection direction = "next");
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBKeyRange {
|
|
readonly attribute any lower;
|
|
readonly attribute any upper;
|
|
readonly attribute boolean lowerOpen;
|
|
readonly attribute boolean upperOpen;
|
|
|
|
// Static construction methods:
|
|
[NewObject] static IDBKeyRange only(any value);
|
|
[NewObject] static IDBKeyRange lowerBound(any lower, optional boolean open = false);
|
|
[NewObject] static IDBKeyRange upperBound(any upper, optional boolean open = false);
|
|
[NewObject] static IDBKeyRange bound(any lower,
|
|
any upper,
|
|
optional boolean lowerOpen = false,
|
|
optional boolean upperOpen = false);
|
|
|
|
boolean _includes(any key);
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBCursor {
|
|
readonly attribute (IDBObjectStore or IDBIndex) source;
|
|
readonly attribute IDBCursorDirection direction;
|
|
readonly attribute any key;
|
|
readonly attribute any primaryKey;
|
|
|
|
void advance([EnforceRange] unsigned long count);
|
|
void continue(optional any key);
|
|
void continuePrimaryKey(any key, any primaryKey);
|
|
|
|
[NewObject] IDBRequest update(any value);
|
|
[NewObject] IDBRequest delete();
|
|
};
|
|
|
|
enum IDBCursorDirection {
|
|
"next",
|
|
"nextunique",
|
|
"prev",
|
|
"prevunique"
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBCursorWithValue : IDBCursor {
|
|
readonly attribute any value;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBTransaction : EventTarget {
|
|
readonly attribute DOMStringList objectStoreNames;
|
|
readonly attribute IDBTransactionMode mode;
|
|
[SameObject] readonly attribute IDBDatabase db;
|
|
readonly attribute DOMException error;
|
|
|
|
IDBObjectStore objectStore(DOMString name);
|
|
void abort();
|
|
|
|
// Event handlers:
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler oncomplete;
|
|
attribute EventHandler onerror;
|
|
};
|
|
|
|
enum IDBTransactionMode {
|
|
"readonly",
|
|
"readwrite",
|
|
"versionchange"
|
|
};
|