| Index: LayoutTests/http/tests/multipart/multipart-html.php
|
| diff --git a/LayoutTests/http/tests/multipart/multipart-html.php b/LayoutTests/http/tests/multipart/multipart-html.php
|
| deleted file mode 100644
|
| index 59cc203cf8745c21ca0ad5516ea794a57807523c..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/multipart/multipart-html.php
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<?php
|
| -header('Content-type: multipart/x-mixed-replace; boundary=boundary');
|
| -header('Connection: keep-alive');
|
| -echo "--boundary\r\n";
|
| -echo "Content-Type: text/html\r\n\r\n";
|
| -echo str_pad('', 5000);
|
| -?>
|
| -
|
| -<script>
|
| -if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -</script>
|
| -
|
| -<?php
|
| -for ($i = 0; $i <= 10; $i++) {
|
| - echo "--boundary\r\n";
|
| - echo "Content-Type: text/html\r\n\r\n";
|
| - echo "This text should only appear once ";
|
| - echo $i;
|
| - echo str_pad('', 5000);
|
| - echo "\r\n\r\n";
|
| - flush();
|
| - usleep(100000);
|
| - $i++;
|
| -}
|
| -?>
|
|
|