mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
7 lines
221 B
JavaScript
7 lines
221 B
JavaScript
// META: global=window,worker
|
|
|
|
promise_test(function(test) {
|
|
var requestInit = {"method": "HEAD", "body": "test"};
|
|
return promise_rejects_js(test, TypeError, fetch(".", requestInit));
|
|
}, "Fetch with HEAD with body");
|