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

Side by Side Diff: LayoutTests/storage/indexeddb/index-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 IDBIndex. 1 [Worker] 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 Starting worker: resources/index-basics.js 6 Starting worker: resources/index-basics.js
7 [Worker] indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.msIndexedDB || self.OIndexedDB;
8 [Worker]
9 [Worker] dbname = "index-basics.js" 7 [Worker] dbname = "index-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] db.createObjectStore('storeName', null) 12 [Worker] db.createObjectStore('storeName', null)
15 [Worker] store.createIndex('indexName', 'x') 13 [Worker] store.createIndex('indexName', 'x')
16 [Worker] store.createIndex('indexName2', 'y', {unique: false}) 14 [Worker] store.createIndex('indexName2', 'y', {unique: false})
17 [Worker] store.createIndex('zIndex', 'z', {unique: true}) 15 [Worker] store.createIndex('zIndex', 'z', {unique: true})
18 PASS [Worker] store.createIndex('index4', 'path', undefined) did not throw excep tion. 16 PASS [Worker] store.createIndex('index4', 'path', undefined) did not throw excep tion.
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 [Worker] Passing an invalid key into indexObject.getKey({}). 134 [Worker] Passing an invalid key into indexObject.getKey({}).
137 [Worker] Expecting exception from indexObject.getKey({}) 135 [Worker] Expecting exception from indexObject.getKey({})
138 PASS [Worker] Exception was thrown. 136 PASS [Worker] Exception was thrown.
139 PASS [Worker] code is 0 137 PASS [Worker] code is 0
140 PASS [Worker] ename is 'DataError' 138 PASS [Worker] ename is 'DataError'
141 [Worker] Exception message: Failed to execute 'getKey' on 'IDBIndex': The parame ter is not a valid key. 139 [Worker] Exception message: Failed to execute 'getKey' on 'IDBIndex': The parame ter is not a valid key.
142 PASS successfullyParsed is true 140 PASS successfullyParsed is true
143 141
144 TEST COMPLETE 142 TEST COMPLETE
145 143
OLDNEW
« no previous file with comments | « LayoutTests/storage/indexeddb/index-basics-expected.txt ('k') | LayoutTests/storage/indexeddb/index-count-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698