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

Side by Side Diff: LayoutTests/storage/indexeddb/pending-activity-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 Checks that garbage collection doesn't reclaim objects with pending activity 1 Checks that garbage collection doesn't reclaim objects with pending activity
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 = "pending-activity.html" 6 dbname = "pending-activity.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 9
12 prepareDatabase(): 10 prepareDatabase():
13 store = db.createObjectStore('store') 11 store = db.createObjectStore('store')
14 store.put(0, 0) 12 store.put(0, 0)
15 13
16 testTransaction(): 14 testTransaction():
17 transaction = db.transaction('store') 15 transaction = db.transaction('store')
(...skipping 21 matching lines...) Expand all
39 cursor.continue() 37 cursor.continue()
40 request.onsuccess = cursorRequestOnSecondSuccess 38 request.onsuccess = cursorRequestOnSecondSuccess
41 request = null 39 request = null
42 self.gc() 40 self.gc()
43 PASS Request 'success' event fired. 41 PASS Request 'success' event fired.
44 42
45 PASS successfullyParsed is true 43 PASS successfullyParsed is true
46 44
47 TEST COMPLETE 45 TEST COMPLETE
48 46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698