Chromium Code Reviews

Side by Side Diff: LayoutTests/storage/indexeddb/objectstore-autoincrement-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.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed.
1 Test IndexedDB's IDBObjectStore auto-increment feature. 2 Test IndexedDB's IDBObjectStore auto-increment feature.
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 = "objectstore-autoincrement.html" 7 dbname = "objectstore-autoincrement.html"
7 indexedDB.deleteDatabase(dbname) 8 indexedDB.deleteDatabase(dbname)
8 indexedDB.open(dbname) 9 indexedDB.open(dbname)
9 createObjectStore(): 10 createObjectStore():
10 store = db.createObjectStore('StoreWithKeyPath', {keyPath: 'id', autoIncrement: true}) 11 store = db.createObjectStore('StoreWithKeyPath', {keyPath: 'id', autoIncrement: true})
(...skipping 67 matching lines...)
78 PASS cursor.value.a.b.c.id is expected 79 PASS cursor.value.a.b.c.id is expected
79 expected = cursor.value.a.b.c.id + 1 80 expected = cursor.value.a.b.c.id + 1
80 PASS cursor.value.foo is "bar" 81 PASS cursor.value.foo is "bar"
81 PASS cursor.value.a.b.c.id is expected 82 PASS cursor.value.a.b.c.id is expected
82 expected = cursor.value.a.b.c.id + 1 83 expected = cursor.value.a.b.c.id + 1
83 PASS count is 4 84 PASS count is 4
84 PASS successfullyParsed is true 85 PASS successfullyParsed is true
85 86
86 TEST COMPLETE 87 TEST COMPLETE
87 88
OLDNEW

Powered by Google App Engine