mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
4 lines
190 B
JavaScript
4 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");
|