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

Side by Side Diff: LayoutTests/storage/indexeddb/objectstore-clear-expected.txt

Issue 966843002: Mark DOMStringList.contains() as deprecated, add console warning. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add more detailed use counters Created 5 years, 6 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 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed.
1 Test IndexedDB's IDBObjectStore.clear(). 2 Test IndexedDB's IDBObjectStore.clear().
2 3
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 5
5 6
6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB; 7 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB;
7 8
8 dbname = "objectstore-clear.html" 9 dbname = "objectstore-clear.html"
9 indexedDB.deleteDatabase(dbname) 10 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 11 indexedDB.open(dbname)
(...skipping 12 matching lines...) Expand all
23 openKeyCursorSuccess(): 24 openKeyCursorSuccess():
24 PASS event.target.result is null 25 PASS event.target.result is null
25 db.transaction(['otherStoreName']) 26 db.transaction(['otherStoreName'])
26 otherStore = transaction.objectStore('otherStoreName') 27 otherStore = transaction.objectStore('otherStoreName')
27 otherStore.get('key') 28 otherStore.get('key')
28 PASS event.target.result is "value" 29 PASS event.target.result is "value"
29 PASS successfullyParsed is true 30 PASS successfullyParsed is true
30 31
31 TEST COMPLETE 32 TEST COMPLETE
32 33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698