| OLD | NEW |
| 1 enum IDBTransactionMode { | 1 enum IDBTransactionMode { |
| 2 "readonly", | 2 "readonly", |
| 3 "readwrite", | 3 "readwrite", |
| 4 "versionchange" | 4 "versionchange" |
| 5 }; | 5 }; |
| 6 | 6 |
| 7 enum IDBRequestReadyState { | 7 enum IDBRequestReadyState { |
| 8 "pending", | 8 "pending", |
| 9 "done" | 9 "done" |
| 10 }; | 10 }; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 interface IDBTransaction : EventTarget { | 136 interface IDBTransaction : EventTarget { |
| 137 readonly attribute IDBTransactionMode mode; | 137 readonly attribute IDBTransactionMode mode; |
| 138 readonly attribute IDBDatabase db; | 138 readonly attribute IDBDatabase db; |
| 139 readonly attribute DOMError error; | 139 readonly attribute DOMError error; |
| 140 IDBObjectStore objectStore (DOMString name); | 140 IDBObjectStore objectStore (DOMString name); |
| 141 void abort (); | 141 void abort (); |
| 142 attribute EventHandler onabort; | 142 attribute EventHandler onabort; |
| 143 attribute EventHandler oncomplete; | 143 attribute EventHandler oncomplete; |
| 144 attribute EventHandler onerror; | 144 attribute EventHandler onerror; |
| 145 }; | 145 }; |
| OLD | NEW |