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

Side by Side Diff: LayoutTests/storage/indexeddb/persistence-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 IndexedDB persistence 2 Test IndexedDB persistence
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 dbname = "persistence.html" 7 dbname = "persistence.html"
7 indexedDB.deleteDatabase(dbname) 8 indexedDB.deleteDatabase(dbname)
8 indexedDB.open(dbname) 9 indexedDB.open(dbname)
9 10
10 request = indexedDB.open(dbname, 1) 11 request = indexedDB.open(dbname, 1)
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 PASS db.version is 5 65 PASS db.version is 5
65 PASS db.name is "persistence.html" 66 PASS db.name is "persistence.html"
66 PASS db.objectStoreNames.length is 0 67 PASS db.objectStoreNames.length is 0
67 PASS db.objectStoreNames.contains('store1') is false 68 PASS db.objectStoreNames.contains('store1') is false
68 PASS db.objectStoreNames.contains('store2') is false 69 PASS db.objectStoreNames.contains('store2') is false
69 db.close() 70 db.close()
70 PASS successfullyParsed is true 71 PASS successfullyParsed is true
71 72
72 TEST COMPLETE 73 TEST COMPLETE
73 74
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698