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

Side by Side Diff: LayoutTests/http/tests/misc/xmltokenizer-do-not-crash.pl

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 # 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 print "Content-Type: text/xml\r\n"; 7 print "Content-Type: text/xml\r\n";
8 print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\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"; 9 print "Cache-Control: no-store, no-cache, must-revalidate\r\n";
10 print "Pragma: no-cache\r\n"; 10 print "Pragma: no-cache\r\n";
11 print "\r\n"; 11 print "\r\n";
12 12
13 print "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http:/ /www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; 13 print "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http:/ /www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
14 print "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"pl\">\n"; 14 print "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"pl\">\n";
15 print "<head>\n"; 15 print "<head>\n";
16 print "<script>\n"; 16 print "<script>\n";
17 print "if (window.testRunner) testRunner.dumpAsText();\n"; 17 print "if (window.testRunner) testRunner.dumpAsText();\n";
18 print "</script>"; 18 print "</script>";
19 print "</head>\n"; 19 print "</head>\n";
20 print "<body>\n"; 20 print "<body>\n";
21 print "<pre id='msg'></pre>\n"; 21 print "<pre id='msg'></pre>\n";
22 print "<script type='text/javascript' src='resources/script-slow1.pl'></script>\ n"; 22 print "<script type='text/javascript' src='resources/script-slow1.pl'></script>\ n";
23 sleep 1; 23 sleep 1;
24 print "<script type='text/javascript' src='resources/script-slow2.pl'></script>\ n"; 24 print "<script type='text/javascript' src='resources/script-slow2.pl'></script>\ n";
25 print "</body></html>\n"; 25 print "</body></html>\n";
OLDNEW
« no previous file with comments | « LayoutTests/http/tests/misc/resources/svg-slow.pl ('k') | LayoutTests/http/tests/navigation/resources/slow-resource.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698