Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/fetch/api/basic/request-head.js

Issue 2778753002: Import //fetch from Web Platform Tests. (Closed)
Patch Set: Baselines. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 if (this.document === undefined) {
2 importScripts("/resources/testharness.js");
3 }
4
5 promise_test(function(test) {
6 var requestInit = {"method": "HEAD", "body": "test"};
7 return promise_rejects(test, new TypeError(), fetch(".", requestInit));
8 }, "Fetch with HEAD with body");
9
10 done();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698