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

Side by Side Diff: LayoutTests/storage/indexeddb/unblocked-version-changes-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 that metadata remains correct when an aborted version change is followed by another. 1 Ensure that metadata remains correct when an aborted version change is followed by another.
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 = "unblocked-version-changes.html" 6 dbname = "unblocked-version-changes.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 8
11 openConnection(): 9 openConnection():
12 request = indexedDB.open(dbname, 2) 10 request = indexedDB.open(dbname, 2)
13 11
14 onUpgradeNeeded(): 12 onUpgradeNeeded():
15 db = request.result 13 db = request.result
16 PASS db.version is 2 14 PASS db.version is 2
17 transaction = request.transaction 15 transaction = request.transaction
18 request = indexedDB.open(dbname, 3) 16 request = indexedDB.open(dbname, 3)
19 transaction.abort() 17 transaction.abort()
20 18
21 onError(): 19 onError():
22 PASS db.version is 0 20 PASS db.version is 0
23 21
24 onUpgradeNeeded2(): 22 onUpgradeNeeded2():
25 db = request.result 23 db = request.result
26 PASS db.version is 3 24 PASS db.version is 3
27 25
28 onSuccess(): 26 onSuccess():
29 db = request.result 27 db = request.result
30 PASS db.version is 3 28 PASS db.version is 3
31 PASS successfullyParsed is true 29 PASS successfullyParsed is true
32 30
33 TEST COMPLETE 31 TEST COMPLETE
34 32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698