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

Side by Side Diff: LayoutTests/storage/indexeddb/index-cursor-expected.txt

Issue 415753002: Deprecate the webkit-prefixed standard IndexedDB entry points (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 Test IndexedDB's webkitIDBIndex.openCursor + the cursor it produces in depth. 1 Test IndexedDB's IDBIndex.openCursor + the cursor it produces in depth.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB; 6 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self. msIndexedDB || self.OIndexedDB;
7 7
8 dbname = "index-cursor.html" 8 dbname = "index-cursor.html"
9 indexedDB.deleteDatabase(dbname) 9 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 10 indexedDB.open(dbname)
11 db.createObjectStore('someObjectStore') 11 db.createObjectStore('someObjectStore')
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 599
600 Next test: null key path sorted ascending. 600 Next test: null key path sorted ascending.
601 PASS event.target.result is null 601 PASS event.target.result is null
602 602
603 Next test: null key path sorted descending. 603 Next test: null key path sorted descending.
604 PASS event.target.result is null 604 PASS event.target.result is null
605 PASS successfullyParsed is true 605 PASS successfullyParsed is true
606 606
607 TEST COMPLETE 607 TEST COMPLETE
608 608
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698