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

Side by Side Diff: LayoutTests/storage/indexeddb/list-ordering-expected.txt

Issue 1317593005: Indexed DB: Remove vendor prefix removal from tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 Test string list ordering in IndexedDB. 1 Test string list ordering in IndexedDB.
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;
7
8 dbname = "list-ordering.html" 6 dbname = "list-ordering.html"
9 indexedDB.deleteDatabase(dbname) 7 indexedDB.deleteDatabase(dbname)
10 indexedDB.open(dbname) 8 indexedDB.open(dbname)
11 check that the expected order is the canonical JS sort order: 9 check that the expected order is the canonical JS sort order:
12 sorted_order = expected_order.slice(); sorted_order.sort() 10 sorted_order = expected_order.slice(); sorted_order.sort()
13 PASS areArraysEqual(sorted_order, expected_order) is true 11 PASS areArraysEqual(sorted_order, expected_order) is true
14 12
15 Object stores: 13 Object stores:
16 db.createObjectStore("𝄞") 14 db.createObjectStore("𝄞")
17 db.createObjectStore("�") 15 db.createObjectStore("�")
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 store.createIndex("B", 'keyPath') 49 store.createIndex("B", 'keyPath')
52 store.createIndex("0", 'keyPath') 50 store.createIndex("0", 'keyPath')
53 store.createIndex("1", 'keyPath') 51 store.createIndex("1", 'keyPath')
54 store.createIndex("\u0000", 'keyPath') 52 store.createIndex("\u0000", 'keyPath')
55 store.createIndex("", 'keyPath') 53 store.createIndex("", 'keyPath')
56 PASS areArraysEqual(store.indexNames, expected_order) is true 54 PASS areArraysEqual(store.indexNames, expected_order) is true
57 PASS successfullyParsed is true 55 PASS successfullyParsed is true
58 56
59 TEST COMPLETE 57 TEST COMPLETE
60 58
OLDNEW
« no previous file with comments | « LayoutTests/storage/indexeddb/lazy-index-types-expected.txt ('k') | LayoutTests/storage/indexeddb/metadata-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698