| Index: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.html b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.html
|
| index 55e752f2630877184cecee79cbea3f4ed0d26a44..033ea7b624621ec45268c205f765c9d153218153 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.html
|
| @@ -11,28 +11,35 @@
|
|
|
| <script>
|
| "use strict";
|
| -setup(function() {
|
| - var idlArray = new IdlArray();
|
| -
|
| +async_test(function(t) {
|
| var request = new XMLHttpRequest();
|
| request.open("GET", "interfaces.idl");
|
| request.send();
|
| - request.onload = function() {
|
| + request.onload = t.step_func(function() {
|
| + var idlArray = new IdlArray();
|
| var idls = request.responseText;
|
|
|
| + // https://html.spec.whatwg.org/multipage/browsers.html#window
|
| idlArray.add_untested_idls("[PrimaryGlobal] interface Window { };");
|
| +
|
| + // https://html.spec.whatwg.org/multipage/webappapis.html#windoworworkerglobalscope-mixin
|
| + idlArray.add_untested_idls(`[NoInterfaceObject, Exposed=(Window,Worker)]
|
| + interface WindowOrWorkerGlobalScope {};`);
|
| + idlArray.add_untested_idls("Window 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_idls("Window implements IDBEnvironment;");
|
|
|
| idlArray.add_objects({
|
| IDBCursor: [],
|
| IDBCursorWithValue: [],
|
| IDBDatabase: [],
|
| - IDBEnvironment: [],
|
| IDBFactory: ["window.indexedDB"],
|
| IDBIndex: [],
|
| IDBKeyRange: ["IDBKeyRange.only(0)"],
|
| @@ -41,10 +48,11 @@ setup(function() {
|
| IDBRequest: [],
|
| IDBTransaction: [],
|
| IDBVersionChangeEvent: ["new IDBVersionChangeEvent('foo')"],
|
| + DOMStringList: [],
|
| });
|
|
|
| idlArray.test();
|
| - done();
|
| - };
|
| -}, {explicit_done: true});
|
| + t.done();
|
| + });
|
| +});
|
| </script>
|
|
|