mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
4 lines
193 B
JavaScript
4 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");
|