Bug 1735858 [wpt PR 31247] - App history: make it mostly nonfunctional for opaque...
[gecko.git] / testing / web-platform / tests / dom / idlharness.any.js
blob26da3ab3bf94d59a6e1fd9b7c4131b63c7c3bf30
1 // META: global=worker
2 // META: script=/resources/WebIDLParser.js
3 // META: script=/resources/idlharness.js
4 // META: timeout=long
6 // Note: This test doesn't cover the Window context, see idlharness.window.js
7 // for that coverage and why it can't be merged into this test.
9 'use strict';
11 idl_test(
12   ['dom'],
13   ['html'],
14   idl_array => {
15     idl_array.add_objects({
16       EventTarget: ['new EventTarget()'],
17       Event: ['new Event("foo")'],
18       CustomEvent: ['new CustomEvent("foo")'],
19       AbortController: ['new AbortController()'],
20       AbortSignal: ['new AbortController().signal'],
21     });
22   }
25 done();