Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / resources / image-slow.pl
blob9596abbec1d0d4b2d9dff69eb2782f2d06c9d996
1 #!/usr/bin/perl -w
3 # flush the buffers after each print
4 select (STDOUT);
5 $| = 1;
7 print "Content-Type: image/jpeg\r\n";
8 print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\r\n";
9 print "Cache-Control: no-store, no-cache, must-revalidate\r\n";
10 print "Pragma: no-cache\r\n";
11 print "\r\n";
13 sleep 2;
15 open(FILE, "green.jpg");
16 while (<FILE>) {
17 print $_;
19 close(FILE);