Index: LayoutTests/storage/indexeddb/cursor-advance-expected.txt |
=================================================================== |
--- LayoutTests/storage/indexeddb/cursor-advance-expected.txt (revision 131667) |
+++ LayoutTests/storage/indexeddb/cursor-advance-expected.txt (working copy) |
@@ -136,6 +136,12 @@ |
Expecting TypeError exception from cursor.advance(0) |
PASS Exception was thrown. |
PASS cursor.advance(0) threw TypeError: Type error |
+Expecting TypeError exception from cursor.advance(-1) |
+PASS Exception was thrown. |
+PASS cursor.advance(-1) threw TypeError: Type error |
+Expecting TypeError exception from cursor.advance(0x20000000000000) |
+PASS Exception was thrown. |
+PASS cursor.advance(0x20000000000000) threw TypeError: Type error |
testDelete() |
trans = db.transaction(objectStoreName, 'readwrite') |
objectStore = trans.objectStore(objectStoreName) |