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

Side by Side Diff: LayoutTests/storage/indexeddb/objectstore-cursor-expected.txt

Issue 1317593005: Indexed DB: Remove vendor prefix removal from tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
OLDNEW
1 Test IndexedDB's objectStore.openCursor + the cursor it produces in depth. 1 Test IndexedDB's objectStore.openCursor + the cursor it produces in depth.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB;
7
8 dbname = "objectstore-cursor.html" 6 dbname = "objectstore-cursor.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 objectStore = db.createObjectStore('someObjectStore') 9 objectStore = db.createObjectStore('someObjectStore')
12 10
13 Verify that specifying an invalid direction raises an exception: 11 Verify that specifying an invalid direction raises an exception:
14 Expecting TypeError exception from objectStore.openCursor(0, 'invalid-direction' ) 12 Expecting TypeError exception from objectStore.openCursor(0, 'invalid-direction' )
15 PASS Exception was thrown. 13 PASS Exception was thrown.
16 PASS objectStore.openCursor(0, 'invalid-direction') threw TypeError: Failed to e xecute 'openCursor' on 'IDBObjectStore': The provided value 'invalid-direction' is not a valid enum value of type IDBCursorDirection. 14 PASS objectStore.openCursor(0, 'invalid-direction') threw TypeError: Failed to e xecute 'openCursor' on 'IDBObjectStore': The provided value 'invalid-direction' is not a valid enum value of type IDBCursorDirection.
17 15
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 PASS event.target.result.key is testData[4] 741 PASS event.target.result.key is testData[4]
744 PASS event.target.result.key is testData[3] 742 PASS event.target.result.key is testData[3]
745 PASS event.target.result.key is testData[2] 743 PASS event.target.result.key is testData[2]
746 PASS event.target.result.key is testData[1] 744 PASS event.target.result.key is testData[1]
747 PASS event.target.result.key is testData[0] 745 PASS event.target.result.key is testData[0]
748 PASS event.target.result is null 746 PASS event.target.result is null
749 PASS successfullyParsed is true 747 PASS successfullyParsed is true
750 748
751 TEST COMPLETE 749 TEST COMPLETE
752 750
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698