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

Side by Side Diff: LayoutTests/storage/indexeddb/factory-basics-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 the basics of IndexedDB's IDBFactory. 2 Test the basics of IndexedDB's IDBFactory.
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 PASS typeof indexedDB.open is "function" 9 PASS typeof indexedDB.open is "function"
9 PASS typeof indexedDB.cmp is "function" 10 PASS typeof indexedDB.cmp is "function"
10 PASS typeof indexedDB.deleteDatabase is "function" 11 PASS typeof indexedDB.deleteDatabase is "function"
(...skipping 15 matching lines...) Expand all
26 PASS request.source is null 27 PASS request.source is null
27 indexedDB.webkitGetDatabaseNames() 28 indexedDB.webkitGetDatabaseNames()
28 databaseNames = event.target.result 29 databaseNames = event.target.result
29 PASS databaseNames.contains('storage/indexeddb/factory-basics') is false 30 PASS databaseNames.contains('storage/indexeddb/factory-basics') is false
30 PASS databaseNames.contains('DATABASE THAT DOES NOT EXIST') is false 31 PASS databaseNames.contains('DATABASE THAT DOES NOT EXIST') is false
31 indexedDB.deleteDatabase('DATABASE THAT DOES NOT EXIST') 32 indexedDB.deleteDatabase('DATABASE THAT DOES NOT EXIST')
32 PASS successfullyParsed is true 33 PASS successfullyParsed is true
33 34
34 TEST COMPLETE 35 TEST COMPLETE
35 36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698