Changeset 167500 in webkit


Ignore:
Timestamp:
Apr 18, 2014 1:05:14 PM (10 years ago)
Author:
ap@apple.com
Message:

http/tests/multipart/policy-ignore-crash.php erroneously depends on http stack quirks
https://bugs.webkit.org/show_bug.cgi?id=131853

Reviewed by Brady Eidson.

  • http/tests/multipart/policy-ignore-crash.php: Produce a nice multipart response

with boundaries on their own lines.

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r167498 r167500  
     12014-04-18  Alexey Proskuryakov  <ap@apple.com>
     2
     3        http/tests/multipart/policy-ignore-crash.php erroneously depends on http stack quirks
     4        https://bugs.webkit.org/show_bug.cgi?id=131853
     5
     6        Reviewed by Brady Eidson.
     7
     8        * http/tests/multipart/policy-ignore-crash.php: Produce a nice multipart response
     9        with boundaries on their own lines.
     10
    1112014-04-18  Simon Fraser  <simon.fraser@apple.com>
    212
  • trunk/LayoutTests/http/tests/multipart/policy-ignore-crash.php

    r124691 r167500  
    1313# Add some padding because CFNetwork merges small multipart segments together.
    1414echo str_pad('', 5000);
     15echo "\r\n";
    1516
    1617ob_flush();
    1718flush();
    18 ?>
    19 --asdf
     19?>--asdf
    2020Content-type: text/rtf
    2121
     
    2626# Add some padding because CFNetwork merges small multipart segments together.
    2727echo str_pad('', 5000);
    28 ?>
    29 
    30 --asdf--
     28echo "\r\n";
     29?>--asdf--
Note: See TracChangeset for help on using the changeset viewer.