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

Side by Side Diff: LayoutTests/http/tests/cache/resources/random.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 print "Content-type: text/javascript\n"; 3 print "Content-type: text/javascript\n";
4 print "Cache-control: no-store\n"; 4 print "Cache-control: no-store\n";
5 print "\n"; 5 print "\n";
6 6
7 my $random_number = int(rand(1000000000000)); 7 my $random_number = int(rand(1000000000000));
8 print "randomNumber = " . $random_number . ";\n"; 8 print "randomNumber = " . $random_number . ";\n";
9 print "document.querySelector('h1').textContent = randomNumber;"; 9 print "document.querySelector('h1').textContent = randomNumber;";
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/cache/resources/echo-no-store.cgi ('k') | LayoutTests/http/tests/cache/resources/random-cached.cgi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698