Chromium Code Reviews| Index: LayoutTests/http/tests/incremental/slow-xsl-transformed-xml.pl |
| diff --git a/LayoutTests/http/tests/incremental/slow-xsl-transformed-xml.pl b/LayoutTests/http/tests/incremental/slow-xsl-transformed-xml.pl |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..bb7508269096c751b7f9537c439c2b260997abb4 |
| --- /dev/null |
| +++ b/LayoutTests/http/tests/incremental/slow-xsl-transformed-xml.pl |
| @@ -0,0 +1,20 @@ |
| +#!/usr/bin/perl -w |
| + |
| +# flush the buffers after each print |
| +select (STDOUT); |
| +$| = 1; |
| + |
| +print "Content-Type: application/xml\n"; |
| +print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\n"; |
| +print "Cache-Control: no-store, no-cache, must-revalidate\n"; |
| +print "Pragma: no-cache\n"; |
| +print "\n"; |
| + |
| +print "\xef\xbb\xbf<?xml version=\"1.0\"?>\n"; |
| +print "<?xml-stylesheet type=\"text/xsl\" href=\"resources/slow.xsl\"?>\n"; |
| + |
| +for ($count=1; $count<4000; $count++) { |
|
eseidel
2013/10/16 19:35:09
Do you want to sleep in here?
|
| + print "\n"; |
| +} |
| + |
| +print "<RESULT>FAILED</RESULT>\n"; |