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

Side by Side Diff: LayoutTests/storage/indexeddb/objectstore-removeobjectstore-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 IndexedDB's webkitIDBObjectStore.deleteObjectStore(). 1 Test IndexedDB's IDBObjectStore.deleteObjectStore().
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 = "objectstore-removeobjectstore.html" 8 dbname = "objectstore-removeobjectstore.html"
9 indexedDB.deleteDatabase(dbname) 9 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 10 indexedDB.open(dbname)
11 store = db.createObjectStore('storeName', null) 11 store = db.createObjectStore('storeName', null)
(...skipping 10 matching lines...) Expand all
22 db.createObjectStore('storeName', null) 22 db.createObjectStore('storeName', null)
23 db.transaction(['storeName']) 23 db.transaction(['storeName'])
24 store = transaction.objectStore('storeName') 24 store = transaction.objectStore('storeName')
25 store.get('key') 25 store.get('key')
26 PASS event.target.result is undefined 26 PASS event.target.result is undefined
27 PASS event.target.source.indexNames.contains('indexName') is false 27 PASS event.target.source.indexNames.contains('indexName') is false
28 PASS successfullyParsed is true 28 PASS successfullyParsed is true
29 29
30 TEST COMPLETE 30 TEST COMPLETE
31 31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698