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

Side by Side Diff: LayoutTests/storage/indexeddb/index-basics-expected.txt

Issue 415753002: Deprecate the webkit-prefixed standard IndexedDB entry points (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 Test the basics of IndexedDB's webkitIDBIndex. 1 Test the basics of IndexedDB's IDBIndex.
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; 6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB;
7 7
8 dbname = "index-basics.html" 8 dbname = "index-basics.html"
9 indexedDB.deleteDatabase(dbname) 9 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 10 indexedDB.open(dbname)
11 11
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 Passing an invalid key into indexObject.getKey({}). 135 Passing an invalid key into indexObject.getKey({}).
136 Expecting exception from indexObject.getKey({}) 136 Expecting exception from indexObject.getKey({})
137 PASS Exception was thrown. 137 PASS Exception was thrown.
138 PASS code is 0 138 PASS code is 0
139 PASS ename is 'DataError' 139 PASS ename is 'DataError'
140 Exception message: Failed to execute 'getKey' on 'IDBIndex': The parameter is no t a valid key. 140 Exception message: Failed to execute 'getKey' on 'IDBIndex': The parameter is no t a valid key.
141 PASS successfullyParsed is true 141 PASS successfullyParsed is true
142 142
143 TEST COMPLETE 143 TEST COMPLETE
144 144
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698