mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 17:33:08 +09:00
10 lines
286 B
JavaScript
10 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();
|