summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/api/basic/request-head.js
blob: f0d6b74f8d714e559bd2c16b3051582ae38dac30 (plain)
1
2
3
4
5
6
7
8
9
10
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();