Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /wasm/webapi/origin.sub.any.html - WPT Dashboard Interop Dashboard
- /wasm/webapi/origin.sub.any.serviceworker.html - WPT Dashboard Interop Dashboard
- /wasm/webapi/origin.sub.any.sharedworker.html - WPT Dashboard Interop Dashboard
- /wasm/webapi/origin.sub.any.worker.html - WPT Dashboard Interop Dashboard
// META: global=window,worker
for (const method of ["compileStreaming", "instantiateStreaming"]) {
promise_test(t => {
const response = fetch(url, { "mode": "no-cors" });
return promise_rejects_js(t, TypeError, WebAssembly[method](response));
}, `Opaque response: ${method}`);
promise_test(t => {
const url = "/fetch/api/resources/redirect.py?redirect_status=301&location=/wasm/incrementer.wasm";
const response = fetch(url, { "mode": "no-cors", "redirect": "manual" });
return promise_rejects_js(t, TypeError, WebAssembly[method](response));
}, `Opaque redirect response: ${method}`);
}