mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
if (this.document === undefined) {
|
|
importScripts("/resources/testharness.js");
|
|
}
|
|
|
|
promise_test(function(test) {
|
|
var requestInit = {"method": "HEAD", "body": "test"};
|
|
return promise_rejects(test, new TypeError(), fetch(".", requestInit));
|
|
}, "Fetch with HEAD with body");
|
|
|
|
done();
|