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

Side by Side Diff: LayoutTests/http/tests/navigation/resources/slow-resource-1-sec.pl

Issue 155173003: checkpoint unix version of apache win32 patch. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: re-daemonize apache on unix 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 | Annotate | Revision Log
OLDNEW
1 #!/usr/bin/perl -w 1 #!/usr/bin/perl -wT
2 2
3 # flush the buffers after each print 3 # flush the buffers after each print
4 select (STDOUT); 4 select (STDOUT);
5 $| = 1; 5 $| = 1;
6 6
7 sleep 1; 7 sleep 1;
8 8
9 print "Content-Type: text/plain\n"; 9 print "Content-Type: text/plain\n";
10 print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\n"; 10 print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\n";
11 print "Cache-Control: no-store, no-cache, must-revalidate\n"; 11 print "Cache-Control: no-store, no-cache, must-revalidate\n";
12 print "Pragma: no-cache\n"; 12 print "Pragma: no-cache\n";
13 print "\n"; 13 print "\n";
14 14
15 print "This resource<br>\n"; 15 print "This resource<br>\n";
16 print "Only loads<br>\n"; 16 print "Only loads<br>\n";
17 print "After a second<br>\n"; 17 print "After a second<br>\n";
18 print "Of delay<br>\n"; 18 print "Of delay<br>\n";
19 print "<br>\n"; 19 print "<br>\n";
20 print "<br>\n"; 20 print "<br>\n";
21 print "<br>\n"; 21 print "<br>\n";
22 print "<br>\n"; 22 print "<br>\n";
23 print "<br>\n"; 23 print "<br>\n";
24 print "<br>\n"; 24 print "<br>\n";
25 print "<br>\n"; 25 print "<br>\n";
26 print "<br>\n"; 26 print "<br>\n";
27 print "<br>\n"; 27 print "<br>\n";
28 print "<br>\n"; 28 print "<br>\n";
29 29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698