Changeset 176990 in webkit


Ignore:
Timestamp:
Dec 8, 2014 4:16:38 PM (9 years ago)
Author:
ap@apple.com
Message:

REGRESSION (173394): Support for webcam is broken
https://bugs.webkit.org/show_bug.cgi?id=139313

Test by Antti Koivisto, reviewed and tweaked by Alexey Proskuryakov.

  • http/tests/multipart/multipart-image-expected.html: Added.
  • http/tests/multipart/multipart-image.html: Added.
  • http/tests/multipart/resources/multipart.php: Multiopart boundary must start on

a new line, so make it so. In newwer OS versions, CFNetwork has a workaround that
makes invalid multipart response work, which is why the test was passing locally.

Location:
trunk/LayoutTests
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r176984 r176990  
     12014-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
    1152014-12-08  Benjamin Poulain  <bpoulain@apple.com>
    216
  • trunk/LayoutTests/http/tests/multipart/resources/multipart.php

    r66924 r176990  
    88        echo("Content-Type: image/png\r\n\r\n");
    99        echo($data);
    10         echo("--$boundary\r\n");
     10        echo("\r\n--$boundary\r\n");
    1111        flush();
    1212    }
Note: See TracChangeset for help on using the changeset viewer.