mirror of
https://github.com/servo/servo
synced 2026-05-14 19:06:31 +02:00
5 lines
190 B
JavaScript
5 lines
190 B
JavaScript
promise_test(function(test) {
|
|
var requestInit = {"method": "HEAD", "body": "test"};
|
|
return promise_rejects_js(test, TypeError, fetch(".", requestInit));
|
|
}, "Fetch with HEAD with body");
|