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

Unified Diff: LayoutTests/http/tests/incremental/chunked-xsl-transformed-xml.pl

Issue 27394002: Process decoded bytes when in stopped (but not detached) state (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename test, add comment Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/incremental/chunked-xsl-transformed-xml-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/incremental/chunked-xsl-transformed-xml.pl
diff --git a/LayoutTests/http/tests/incremental/chunked-xsl-transformed-xml.pl b/LayoutTests/http/tests/incremental/chunked-xsl-transformed-xml.pl
new file mode 100755
index 0000000000000000000000000000000000000000..9ab95ca648d017ec76c5cd01b46e1b0c3fe52891
--- /dev/null
+++ b/LayoutTests/http/tests/incremental/chunked-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/transform.xsl\"?>\n";
+
+for ($count=1; $count<4000; $count++) {
+ print "\n";
+}
+
+print "<RESULT>FAILED</RESULT>\n";
« no previous file with comments | « no previous file | LayoutTests/http/tests/incremental/chunked-xsl-transformed-xml-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698