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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/perl -wT
2
3 use CGI;
4
5 my $cgi = new CGI;
6
7 # Just dump whatever was POSTed to us as text/plain.
8
9 print $cgi->header('text/plain');
10
11 # Different versions of the CGI module use different conventions for accessing
12 # the POST data. Because at least one of them will be empty, there is no harm
13 # in printing both.
14 print $cgi->param('POSTDATA');
15 print $cgi->param('keywords');
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698