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

Unified Diff: LayoutTests/http/tests/xmlhttprequest/method-name.cgi

Issue 262173002: Reduce method names converted to upper case via uppercaseKnownHTTPMethod() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/method-names.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/xmlhttprequest/method-name.cgi
diff --git a/LayoutTests/http/tests/xmlhttprequest/method-name.cgi b/LayoutTests/http/tests/xmlhttprequest/method-name.cgi
new file mode 100755
index 0000000000000000000000000000000000000000..a340bb0415f70e40b7dd4a2a40b2307c201ed7c0
--- /dev/null
+++ b/LayoutTests/http/tests/xmlhttprequest/method-name.cgi
@@ -0,0 +1,6 @@
+#!/usr/bin/perl -wT
+
+print "Content-type: text/plain\n";
+my $method = $ENV{'REQUEST_METHOD'};
+print "X-Request-Method: $method\n\n";
+print "$method";
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/method-names.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698