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

Side by Side Diff: LayoutTests/storage/indexeddb/key-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 key cursors weakly hold request, and work if request is GC'd 1 Verify that that key 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 = "key-cursor-request-cycle.html" 6 dbname = "key-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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 finalRequestSuccess(): 49 finalRequestSuccess():
52 PASS cursor.key is "key2" 50 PASS cursor.key is "key2"
53 cursor = null 51 cursor = null
54 gc() 52 gc()
55 PASS cursorRequestObservation.wasCollected is true 53 PASS cursorRequestObservation.wasCollected is true
56 PASS cursorObservation.wasCollected is true 54 PASS cursorObservation.wasCollected is true
57 PASS successfullyParsed is true 55 PASS successfullyParsed is true
58 56
59 TEST COMPLETE 57 TEST COMPLETE
60 58
OLDNEW
« no previous file with comments | « LayoutTests/storage/indexeddb/invalid-keys-expected.txt ('k') | LayoutTests/storage/indexeddb/key-generator-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698