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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.worker.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 "use strict"; 1 "use strict";
2 2
3 importScripts("/resources/testharness.js"); 3 importScripts("/resources/testharness.js");
4 importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js"); 4 importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");
5 5
6 var request = new XMLHttpRequest(); 6 var request = new XMLHttpRequest();
7 request.open("GET", "interfaces.idl"); 7 request.open("GET", "interfaces.idl");
8 request.send(); 8 request.send();
9 request.onload = function() { 9 request.onload = function() {
10 var idlArray = new IdlArray(); 10 var idlArray = new IdlArray();
(...skipping 19 matching lines...) Expand all
30 IDBKeyRange: ["IDBKeyRange.only(0)"], 30 IDBKeyRange: ["IDBKeyRange.only(0)"],
31 IDBObjectStore: [], 31 IDBObjectStore: [],
32 IDBOpenDBRequest: [], 32 IDBOpenDBRequest: [],
33 IDBRequest: [], 33 IDBRequest: [],
34 IDBTransaction: [], 34 IDBTransaction: [],
35 IDBVersionChangeEvent: ["new IDBVersionChangeEvent('foo')"], 35 IDBVersionChangeEvent: ["new IDBVersionChangeEvent('foo')"],
36 }); 36 });
37 idlArray.test(); 37 idlArray.test();
38 done(); 38 done();
39 }; 39 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698