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

Side by Side Diff: LayoutTests/http/tests/xmlhttprequest/resources/print-referer.cgi

Issue 135583003: checkpoint Blink-side work to use Apache on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: new rollup patch Created 6 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/perl -w 1 #!/usr/bin/perl -wT
2 2
3 use CGI qw(:standard); 3 use CGI qw(:standard);
4 my $cgi = new CGI; 4 my $cgi = new CGI;
5 5
6 print "Content-type: text/plain\n\n"; 6 print "Content-type: text/plain\n\n";
7 if ($cgi->referer) { 7 if ($cgi->referer) {
8 print $cgi->referer; 8 print $cgi->referer;
9 } else { 9 } else {
10 print "NO REFERER"; 10 print "NO REFERER";
11 } 11 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698