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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/support.js

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
1 var databaseName = "database"; 1 var databaseName = "database";
2 var databaseVersion = 1; 2 var databaseVersion = 1;
3 3
4 /* Delete created databases 4 /* Delete created databases
5 * 5 *
6 * Go through each finished test, see if it has an associated database. Close 6 * Go through each finished test, see if it has an associated database. Close
7 * that and delete the database. */ 7 * that and delete the database. */
8 add_completion_callback(function(tests) 8 add_completion_callback(function(tests)
9 { 9 {
10 for (var i in tests) 10 for (var i in tests)
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 return this; 94 return this;
95 } 95 }
96 }); 96 });
97 97
98 return rq_open; 98 return rq_open;
99 } 99 }
100 100
101 function assert_key_equals(actual, expected, description) { 101 function assert_key_equals(actual, expected, description) {
102 assert_equals(indexedDB.cmp(actual, expected), 0, description); 102 assert_equals(indexedDB.cmp(actual, expected), 0, description);
103 } 103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698