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

Side by Side Diff: LayoutTests/storage/indexeddb/cursor-skip-deleted-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 cursor skips deleted entries. 1 Test IndexedDB's cursor skips deleted entries.
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 = "cursor-skip-deleted.html" 6 dbname = "cursor-skip-deleted.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 setVersionSuccess(): 9 setVersionSuccess():
12 trans = event.target.transaction 10 trans = event.target.transaction
13 PASS trans is non-null. 11 PASS trans is non-null.
14 objectStore = db.createObjectStore('store', {keyPath: 'id'}) 12 objectStore = db.createObjectStore('store', {keyPath: 'id'})
15 objectStore.createIndex('nameIndex', 'name') 13 objectStore.createIndex('nameIndex', 'name')
16 14
17 resetObjectStore(): 15 resetObjectStore():
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 21: Victor 127 21: Victor
130 22: Whiskey 128 22: Whiskey
131 23: X-ray 129 23: X-ray
132 24: Yankee 130 24: Yankee
133 131
134 transactionComplete(): 132 transactionComplete():
135 PASS successfullyParsed is true 133 PASS successfullyParsed is true
136 134
137 TEST COMPLETE 135 TEST COMPLETE
138 136
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698