Index: modules/indexeddb/IDBRequest.idl |
diff --git a/modules/indexeddb/IDBRequest.idl b/modules/indexeddb/IDBRequest.idl |
index 1241cb7e8bdb461b2bda6ca432dbf625bb063999..42694a9c078b88eff5b82228ae145816887984f7 100644 |
--- a/modules/indexeddb/IDBRequest.idl |
+++ b/modules/indexeddb/IDBRequest.idl |
@@ -27,17 +27,22 @@ |
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// http://www.w3.org/TR/IndexedDB/#idl-def-IDBRequestReadyState |
+ |
enum IDBRequestReadyState { |
"pending", |
"done" |
}; |
+// http://www.w3.org/TR/IndexedDB/#idl-def-IDBRequest |
+ |
[ |
+ Exposed=(Window,Worker), |
ActiveDOMObject, |
GarbageCollected, |
] interface IDBRequest : EventTarget { |
[RaisesException=Getter, CachedAttribute=isResultDirty] readonly attribute any result; |
- [RaisesException=Getter] readonly attribute DOMError error; |
+ [RaisesException=Getter, Measure] readonly attribute DOMError error; |
readonly attribute any source; |
readonly attribute IDBTransaction transaction; |