mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
26 lines
760 B
Plaintext
26 lines
760 B
Plaintext
#import <DOM/EventTarget.idl>
|
|
#import <IndexedDB/IDBDatabase.idl>
|
|
#import <IndexedDB/IDBObjectStore.idl>
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBTransaction : EventTarget {
|
|
[FIXME] readonly attribute DOMStringList objectStoreNames;
|
|
readonly attribute IDBTransactionMode mode;
|
|
readonly attribute IDBTransactionDurability durability;
|
|
[FIXME, SameObject] readonly attribute IDBDatabase db;
|
|
readonly attribute DOMException? error;
|
|
[FIXME] IDBObjectStore objectStore(DOMString name);
|
|
[FIXME] undefined commit();
|
|
undefined abort();
|
|
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler oncomplete;
|
|
attribute EventHandler onerror;
|
|
};
|
|
|
|
enum IDBTransactionMode {
|
|
"readonly",
|
|
"readwrite",
|
|
"versionchange"
|
|
};
|