summaryrefslogtreecommitdiff
path: root/Source/WebCore/Modules/indexeddb/IDBTransaction.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/Modules/indexeddb/IDBTransaction.idl')
-rw-r--r--Source/WebCore/Modules/indexeddb/IDBTransaction.idl21
1 files changed, 10 insertions, 11 deletions
diff --git a/Source/WebCore/Modules/indexeddb/IDBTransaction.idl b/Source/WebCore/Modules/indexeddb/IDBTransaction.idl
index b770f892f..769e919b4 100644
--- a/Source/WebCore/Modules/indexeddb/IDBTransaction.idl
+++ b/Source/WebCore/Modules/indexeddb/IDBTransaction.idl
@@ -25,21 +25,20 @@
*/
[
- Conditional=INDEXED_DATABASE,
ActiveDOMObject,
- EventTarget,
- JSNoStaticTables,
- JSGenerateToJSObject,
- JSGenerateToNativeObject,
+ Conditional=INDEXED_DATABASE,
+ JSCustomMarkFunction,
+ SkipVTableValidation,
] interface IDBTransaction : EventTarget {
- readonly attribute DOMString mode;
+ readonly attribute DOMStringList objectStoreNames;
+ readonly attribute IDBTransactionMode mode;
readonly attribute IDBDatabase db;
readonly attribute DOMError error;
- [RaisesException] IDBObjectStore objectStore (DOMString name);
- [RaisesException] void abort ();
+ [MayThrowException] IDBObjectStore objectStore(DOMString name);
+ [MayThrowException] void abort();
- attribute EventListener onabort;
- attribute EventListener oncomplete;
- attribute EventListener onerror;
+ attribute EventHandler onabort;
+ attribute EventHandler oncomplete;
+ attribute EventHandler onerror;
};