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

Side by Side Diff: LayoutTests/http/tests/multipart/resources/multipart-nodashes.php

Issue 16848005: Remove support for multipart/x-mixed-replace (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <?php
2 # Generates a multipart/x-mixed-replace response but doesn't
3 # include the -- before the boundary.
4
5 $boundary = "cutHere";
6 header("Content-Type: multipart/x-mixed-replace; boundary=$boundary");
7 echo("$boundary\r\n");
8 echo("Content-Type: image/png\r\n\r\n");
9 echo(file_get_contents("green-100x100.png"));
10 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698