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

Side by Side Diff: LayoutTests/storage/indexeddb/intversion-upgrades-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 Upgrade a database, open a second connection at the same version, ensure specify ing a lower version causes an error 1 Upgrade a database, open a second connection at the same version, ensure specify ing a lower version causes an error
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 = "intversion-upgrades.html" 6 dbname = "intversion-upgrades.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 PASS String(request) is "[object IDBOpenDBRequest]" 8 PASS String(request) is "[object IDBOpenDBRequest]"
11 9
12 Call open with no version parameter: 10 Call open with no version parameter:
13 indexedDB.open(dbname) 11 indexedDB.open(dbname)
14 12
15 initialUpgradeNeeded(): 13 initialUpgradeNeeded():
16 14
17 openSuccess(): 15 openSuccess():
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 request = indexedDB.open(dbname) 71 request = indexedDB.open(dbname)
74 request.onsuccess = connection5Success 72 request.onsuccess = connection5Success
75 73
76 connection5Success(): 74 connection5Success():
77 db = event.target.result 75 db = event.target.result
78 PASS db.version is 4 76 PASS db.version is 4
79 PASS successfullyParsed is true 77 PASS successfullyParsed is true
80 78
81 TEST COMPLETE 79 TEST COMPLETE
82 80
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698