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

Side by Side Diff: LayoutTests/storage/indexeddb/objectstore-basics-workers-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 [Worker] Test the basics of IndexedDB's IDBObjectStore. 1 [Worker] Test the basics of IndexedDB's IDBObjectStore.
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 Starting worker: resources/objectstore-basics.js 6 Starting worker: resources/objectstore-basics.js
7 [Worker] indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.msIndexedDB || self.OIndexedDB;
8 [Worker]
9 [Worker] dbname = "objectstore-basics.js" 7 [Worker] dbname = "objectstore-basics.js"
10 [Worker] indexedDB.deleteDatabase(dbname) 8 [Worker] indexedDB.deleteDatabase(dbname)
11 [Worker] indexedDB.open(dbname) 9 [Worker] indexedDB.open(dbname)
12 [Worker] 10 [Worker]
13 [Worker] prepareDatabase(): 11 [Worker] prepareDatabase():
14 [Worker] store = db.createObjectStore('storeName', null) 12 [Worker] store = db.createObjectStore('storeName', null)
15 [Worker] storeNames = db.objectStoreNames 13 [Worker] storeNames = db.objectStoreNames
16 PASS [Worker] 'name' in store is true 14 PASS [Worker] 'name' in store is true
17 PASS [Worker] 'keyPath' in store is true 15 PASS [Worker] 'keyPath' in store is true
18 PASS [Worker] 'indexNames' in store is true 16 PASS [Worker] 'indexNames' in store is true
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 [Worker] The key parameter was provided but does not contain a valid key. 227 [Worker] The key parameter was provided but does not contain a valid key.
230 [Worker] Expecting exception from storeWithOutOfLineKeys.add({}, null) 228 [Worker] Expecting exception from storeWithOutOfLineKeys.add({}, null)
231 PASS [Worker] Exception was thrown. 229 PASS [Worker] Exception was thrown.
232 PASS [Worker] code is 0 230 PASS [Worker] code is 0
233 PASS [Worker] ename is 'DataError' 231 PASS [Worker] ename is 'DataError'
234 [Worker] Exception message: Failed to execute 'add' on 'IDBObjectStore': The par ameter is not a valid key. 232 [Worker] Exception message: Failed to execute 'add' on 'IDBObjectStore': The par ameter is not a valid key.
235 PASS successfullyParsed is true 233 PASS successfullyParsed is true
236 234
237 TEST COMPLETE 235 TEST COMPLETE
238 236
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698