| Index: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.worker.js
|
| index 87e33805087dd6425ffcd537dddfe9e42327efea..42da53ba4629102878f6f724bc184543e0e02b6a 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.worker.js
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.worker.js
|
| @@ -3,35 +3,48 @@
|
| importScripts("/resources/testharness.js");
|
| importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");
|
|
|
| -var request = new XMLHttpRequest();
|
| -request.open("GET", "interfaces.idl");
|
| -request.send();
|
| -request.onload = function() {
|
| - var idlArray = new IdlArray();
|
| - var idls = request.responseText;
|
| -
|
| - idlArray.add_untested_idls("[Exposed=Worker] interface WorkerGlobalScope {};");
|
| - idlArray.add_untested_idls("[Exposed=(Window,Worker)] interface Event { };");
|
| - idlArray.add_untested_idls("[Exposed=(Window,Worker)] interface EventTarget { };");
|
| -
|
| - // From Indexed DB:
|
| - idlArray.add_idls("WorkerGlobalScope implements IDBEnvironment;");
|
| - idlArray.add_idls(idls);
|
| -
|
| - idlArray.add_objects({
|
| - IDBCursor: [],
|
| - IDBCursorWithValue: [],
|
| - IDBDatabase: [],
|
| - IDBEnvironment: [],
|
| - IDBFactory: ["self.indexedDB"],
|
| - IDBIndex: [],
|
| - IDBKeyRange: ["IDBKeyRange.only(0)"],
|
| - IDBObjectStore: [],
|
| - IDBOpenDBRequest: [],
|
| - IDBRequest: [],
|
| - IDBTransaction: [],
|
| - IDBVersionChangeEvent: ["new IDBVersionChangeEvent('foo')"],
|
| +async_test(function(t) {
|
| + var request = new XMLHttpRequest();
|
| + request.open("GET", "interfaces.idl");
|
| + request.send();
|
| + request.onload = t.step_func(function() {
|
| + var idlArray = new IdlArray();
|
| + var idls = request.responseText;
|
| +
|
| + // https://html.spec.whatwg.org/multipage/workers.html#workerglobalscope
|
| + idlArray.add_untested_idls("[Exposed=Worker] interface WorkerGlobalScope {};");
|
| +
|
| + // https://html.spec.whatwg.org/multipage/webappapis.html#windoworworkerglobalscope-mixin
|
| + idlArray.add_untested_idls(`[NoInterfaceObject, Exposed=(Window,Worker)]
|
| + interface WindowOrWorkerGlobalScope {};`);
|
| + idlArray.add_untested_idls("WorkerGlobalScope implements WindowOrWorkerGlobalScope;");
|
| +
|
| + // https://dom.spec.whatwg.org/#interface-event
|
| + idlArray.add_untested_idls("[Exposed=(Window,Worker)] interface Event { };");
|
| +
|
| + // https://dom.spec.whatwg.org/#interface-eventtarget
|
| + idlArray.add_untested_idls("[Exposed=(Window,Worker)] interface EventTarget { };");
|
| +
|
| + // From Indexed DB:
|
| + idlArray.add_idls(idls);
|
| +
|
| + idlArray.add_objects({
|
| + IDBCursor: [],
|
| + IDBCursorWithValue: [],
|
| + IDBDatabase: [],
|
| + IDBFactory: ["self.indexedDB"],
|
| + IDBIndex: [],
|
| + IDBKeyRange: ["IDBKeyRange.only(0)"],
|
| + IDBObjectStore: [],
|
| + IDBOpenDBRequest: [],
|
| + IDBRequest: [],
|
| + IDBTransaction: [],
|
| + IDBVersionChangeEvent: ["new IDBVersionChangeEvent('foo')"],
|
| + DOMStringList: [],
|
| + });
|
| + idlArray.test();
|
| + t.done();
|
| });
|
| - idlArray.test();
|
| - done();
|
| -};
|
| +});
|
| +
|
| +done();
|
|
|