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

Side by Side Diff: LayoutTests/storage/indexeddb/transaction-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 IndexedDB transaction basics. 2 Test IndexedDB transaction basics.
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 = "transaction-basics.html" 7 dbname = "transaction-basics.html"
7 indexedDB.deleteDatabase(dbname) 8 indexedDB.deleteDatabase(dbname)
8 indexedDB.open(dbname) 9 indexedDB.open(dbname)
9 PASS self.db.objectStoreNames is [] 10 PASS self.db.objectStoreNames is []
10 PASS self.db.objectStoreNames.length is 0 11 PASS self.db.objectStoreNames.length is 0
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 db.createObjectStore('null') 247 db.createObjectStore('null')
247 db.createObjectStore('undefined') 248 db.createObjectStore('undefined')
248 PASS transaction = db.transaction(null) did not throw exception. 249 PASS transaction = db.transaction(null) did not throw exception.
249 PASS transaction.objectStore('null') is non-null. 250 PASS transaction.objectStore('null') is non-null.
250 PASS transaction = db.transaction(undefined) did not throw exception. 251 PASS transaction = db.transaction(undefined) did not throw exception.
251 PASS transaction.objectStore('undefined') is non-null. 252 PASS transaction.objectStore('undefined') is non-null.
252 PASS successfullyParsed is true 253 PASS successfullyParsed is true
253 254
254 TEST COMPLETE 255 TEST COMPLETE
255 256
OLDNEW
« no previous file with comments | « LayoutTests/storage/indexeddb/resources/shared.js ('k') | LayoutTests/storage/indexeddb/version-change-abort-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698