mirror of
https://github.com/servo/servo
synced 2026-05-11 01:22:19 +02:00
5 lines
193 B
JavaScript
5 lines
193 B
JavaScript
promise_test(function(test) {
|
|
var requestInit = {"method": "HEAD", "body": "test"};
|
|
return promise_rejects(test, new TypeError(), fetch(".", requestInit));
|
|
}, "Fetch with HEAD with body");
|