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

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: Rebased 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 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 PASS typeof indexedDB.open is "function" 7 PASS typeof indexedDB.open is "function"
7 PASS typeof indexedDB.cmp is "function" 8 PASS typeof indexedDB.cmp is "function"
8 PASS typeof indexedDB.deleteDatabase is "function" 9 PASS typeof indexedDB.deleteDatabase is "function"
9 PASS typeof indexedDB.webkitGetDatabaseNames is "function" 10 PASS typeof indexedDB.webkitGetDatabaseNames is "function"
10 PASS typeof indexedDB.getDatabaseNames is "undefined" 11 PASS typeof indexedDB.getDatabaseNames is "undefined"
(...skipping 13 matching lines...) Expand all
24 PASS request.source is null 25 PASS request.source is null
25 indexedDB.webkitGetDatabaseNames() 26 indexedDB.webkitGetDatabaseNames()
26 databaseNames = event.target.result 27 databaseNames = event.target.result
27 PASS databaseNames.contains('storage/indexeddb/factory-basics') is false 28 PASS databaseNames.contains('storage/indexeddb/factory-basics') is false
28 PASS databaseNames.contains('DATABASE THAT DOES NOT EXIST') is false 29 PASS databaseNames.contains('DATABASE THAT DOES NOT EXIST') is false
29 indexedDB.deleteDatabase('DATABASE THAT DOES NOT EXIST') 30 indexedDB.deleteDatabase('DATABASE THAT DOES NOT EXIST')
30 PASS successfullyParsed is true 31 PASS successfullyParsed is true
31 32
32 TEST COMPLETE 33 TEST COMPLETE
33 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698