Changeset 176990 in webkit
- Timestamp:
- Dec 8, 2014, 4:16:38 PM (10 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LayoutTests/ChangeLog ¶
r176984 r176990 1 2014-12-08 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (173394): Support for webcam is broken 4 https://bugs.webkit.org/show_bug.cgi?id=139313 5 6 Test by Antti Koivisto, reviewed and tweaked by Alexey Proskuryakov. 7 8 * http/tests/multipart/multipart-image-expected.html: Added. 9 * http/tests/multipart/multipart-image.html: Added. 10 11 * http/tests/multipart/resources/multipart.php: Multiopart boundary must start on 12 a new line, so make it so. In newwer OS versions, CFNetwork has a workaround that 13 makes invalid multipart response work, which is why the test was passing locally. 14 1 15 2014-12-08 Benjamin Poulain <bpoulain@apple.com> 2 16 -
TabularUnified trunk/LayoutTests/http/tests/multipart/resources/multipart.php ¶
r66924 r176990 8 8 echo("Content-Type: image/png\r\n\r\n"); 9 9 echo($data); 10 echo(" --$boundary\r\n");10 echo("\r\n--$boundary\r\n"); 11 11 flush(); 12 12 }
Note:
See TracChangeset
for help on using the changeset viewer.