Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698