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

Side by Side Diff: LayoutTests/storage/indexeddb/prefetch-race-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 Ensure IndexedDB's cursor prefetch cache requests are invalidated 1 Ensure IndexedDB's cursor prefetch cache requests are invalidated
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 = "prefetch-race.html" 6 dbname = "prefetch-race.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 9
12 prepareDatabase(): 10 prepareDatabase():
13 db = event.target.result 11 db = event.target.result
14 store = db.createObjectStore('store') 12 store = db.createObjectStore('store')
15 Populate with even records... 13 Populate with even records...
16 14
17 onOpenSuccess(): 15 onOpenSuccess():
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 cursorSuccess(): 47 cursorSuccess():
50 PASS cursor.key is 9 48 PASS cursor.key is 9
51 cursor.continue() 49 cursor.continue()
52 50
53 cursorSuccess(): 51 cursorSuccess():
54 PASS continueCount is 7 52 PASS continueCount is 7
55 PASS successfullyParsed is true 53 PASS successfullyParsed is true
56 54
57 TEST COMPLETE 55 TEST COMPLETE
58 56
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698