mirror of
https://github.com/servo/servo.git
synced 2025-06-26 01:54:33 +01:00
6 lines
221 B
JavaScript
6 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");
|