bdc6379b8f4dec83f02aba66e3b96731b65e8649
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / cache / resources / random-cached.cgi
1 #!/usr/bin/perl -wT
2
3 print "Content-type: text/javascript\n";
4 print "Cache-control: max-age=60000\n";
5 print "ETag: \"123456789\"\n";
6 print "\n";
7
8 my $random_number = int(rand(1000000000000));
9 print "top.randomNumber = " . $random_number . ";\n";
10 print "top.document.querySelector('h1').textContent = top.randomNumber;";