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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/fetch/api/basic/request-head.js
diff --git a/third_party/WebKit/LayoutTests/external/wpt/fetch/api/basic/request-head.js b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/basic/request-head.js
new file mode 100644
index 0000000000000000000000000000000000000000..f0d6b74f8d714e559bd2c16b3051582ae38dac30
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/fetch/api/basic/request-head.js
@@ -0,0 +1,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();

Powered by Google App Engine
This is Rietveld 408576698