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

Unified Diff: LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer-hang-after-partial-data.php

Issue 18635004: [Not ready for review] Add Streams API support to FileReader Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/xmlhttprequest/response-stream.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer-hang-after-partial-data.php
diff --git a/LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer-hang-after-partial-data.php b/LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer-hang-after-partial-data.php
new file mode 100644
index 0000000000000000000000000000000000000000..65cfdb6b21ba67372b1173fe5e4aa97f29d53dfb
--- /dev/null
+++ b/LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer-hang-after-partial-data.php
@@ -0,0 +1,10 @@
+<?php
+header("HTTP/1.1 200 OK");
+header("Content-type: text/event-stream");
+header("Transfer-encoding: chunked");
+
+printf("5\r\nHello\r\n");
+ob_flush();
+flush();
+sleep(10);
+?>
« no previous file with comments | « no previous file | LayoutTests/http/tests/xmlhttprequest/response-stream.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698