Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 8 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /fetch/api/idlharness.any.html - WPT Dashboard Interop Dashboard
- /fetch/api/idlharness.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /fetch/api/idlharness.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /fetch/api/idlharness.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,worker
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long
idl_test(
['fetch'],
['referrer-policy', 'html', 'dom'],
idl_array => {
idl_array.add_objects({
Headers: ["new Headers()"],
Request: ["new Request('about:blank')"],
Response: ["new Response()"],
});
if (self.GLOBAL.isWindow()) {
idl_array.add_objects({ Window: ['window'] });
} else if (self.GLOBAL.isWorker()) {
idl_array.add_objects({ WorkerGlobalScope: ['self'] });
}
}
);