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

Side by Side Diff: LayoutTests/storage/indexeddb/cursor-request-cycle-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 Verify that that cursors weakly hold request, and work if request is GC'd 1 Verify that that cursors weakly hold request, and work if request is GC'd
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-request-cycle.html" 6 dbname = "cursor-request-cycle.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 13
16 onOpen(): 14 onOpen():
17 db = event.target.result 15 db = event.target.result
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 PASS cursor.key is "key2" 52 PASS cursor.key is "key2"
55 PASS cursor.value is "value2" 53 PASS cursor.value is "value2"
56 cursor = null 54 cursor = null
57 gc() 55 gc()
58 PASS cursorRequestObservation.wasCollected is true 56 PASS cursorRequestObservation.wasCollected is true
59 PASS cursorObservation.wasCollected is true 57 PASS cursorObservation.wasCollected is true
60 PASS successfullyParsed is true 58 PASS successfullyParsed is true
61 59
62 TEST COMPLETE 60 TEST COMPLETE
63 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698