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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/plugins/resources/dump-post.pl

Issue 1747713002: Remove http/tests/plugins/interrupted-get-url.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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/http/tests/plugins/resources/dump-post.pl
diff --git a/third_party/WebKit/LayoutTests/http/tests/plugins/resources/dump-post.pl b/third_party/WebKit/LayoutTests/http/tests/plugins/resources/dump-post.pl
deleted file mode 100755
index 823c6490f71bdcebd83f2796c5d7271ef03821ee..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/plugins/resources/dump-post.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl -wT
-
-use CGI;
-
-my $cgi = new CGI;
-
-# Just dump whatever was POSTed to us as text/plain.
-
-print $cgi->header('text/plain');
-
-# Different versions of the CGI module use different conventions for accessing
-# the POST data. Because at least one of them will be empty, there is no harm
-# in printing both.
-print $cgi->param('POSTDATA');
-print $cgi->param('keywords');

Powered by Google App Engine
This is Rietveld 408576698