Log Message
http/tests/multipart/multipart-replace-non-html-content.php shouldn't exercise edge cases of multipart parsing https://bugs.webkit.org/show_bug.cgi?id=149978 rdar://problem/22981062
Reviewed by Anders Carlsson. This test is not about HTTP edge cases, but about handling of multipart content in WebKit. * http/tests/multipart/multipart-replace-non-html-content.php: * platform/mac/http/tests/multipart/multipart-replace-non-html-content-expected.txt: Removed. * platform/win/TestExpectations:
Modified Paths
- trunk/LayoutTests/ChangeLog
- trunk/LayoutTests/http/tests/multipart/multipart-replace-non-html-content.php
- trunk/LayoutTests/platform/win/TestExpectations
Removed Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (190993 => 190994)
--- trunk/LayoutTests/ChangeLog 2015-10-13 17:44:18 UTC (rev 190993)
+++ trunk/LayoutTests/ChangeLog 2015-10-13 18:05:17 UTC (rev 190994)
@@ -1,3 +1,18 @@
+2015-10-13 Alexey Proskuryakov <[email protected]>
+
+ http/tests/multipart/multipart-replace-non-html-content.php shouldn't exercise
+ edge cases of multipart parsing
+ https://bugs.webkit.org/show_bug.cgi?id=149978
+ rdar://problem/22981062
+
+ Reviewed by Anders Carlsson.
+
+ This test is not about HTTP edge cases, but about handling of multipart content in WebKit.
+
+ * http/tests/multipart/multipart-replace-non-html-content.php:
+ * platform/mac/http/tests/multipart/multipart-replace-non-html-content-expected.txt: Removed.
+ * platform/win/TestExpectations:
+
2015-10-13 Zalan Bujtas <[email protected]>
[iOS] Update anonymous table results for iOS port.
Modified: trunk/LayoutTests/http/tests/multipart/multipart-replace-non-html-content.php (190993 => 190994)
--- trunk/LayoutTests/http/tests/multipart/multipart-replace-non-html-content.php 2015-10-13 17:44:18 UTC (rev 190993)
+++ trunk/LayoutTests/http/tests/multipart/multipart-replace-non-html-content.php 2015-10-13 18:05:17 UTC (rev 190994)
@@ -13,14 +13,13 @@
<?php
for ($i = 0; $i <= 10; $i++) {
- echo "--boundary\r\n";
+ echo "\r\n--boundary\r\n";
echo "Content-Type: text/plain\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++;
}
+echo "\r\n\r\n\r\n--boundary--\r\n";
?>
Deleted: trunk/LayoutTests/platform/mac/http/tests/multipart/multipart-replace-non-html-content-expected.txt (190993 => 190994)
--- trunk/LayoutTests/platform/mac/http/tests/multipart/multipart-replace-non-html-content-expected.txt 2015-10-13 17:44:18 UTC (rev 190993)
+++ trunk/LayoutTests/platform/mac/http/tests/multipart/multipart-replace-non-html-content-expected.txt 2015-10-13 18:05:17 UTC (rev 190994)
@@ -1 +0,0 @@
-This text should only appear once 10
Modified: trunk/LayoutTests/platform/win/TestExpectations (190993 => 190994)
--- trunk/LayoutTests/platform/win/TestExpectations 2015-10-13 17:44:18 UTC (rev 190993)
+++ trunk/LayoutTests/platform/win/TestExpectations 2015-10-13 18:05:17 UTC (rev 190994)
@@ -2313,7 +2313,6 @@
http/tests/misc/bad-charset-alias.html
http/tests/misc/refresh-headers.php [ Failure ] # Easy
http/tests/multipart/load-last-non-html-frame.php [ Failure ] # Extra whitespace
-http/tests/multipart/multipart-replace-non-html-content.php [ Failure ] # Extra whitespace
http/tests/navigation/no-referrer-reset.html [ Failure ] # Easy
http/tests/navigation/no-referrer-same-window.html [ Failure ] # Easy
http/tests/navigation/no-referrer-subframe.html [ Failure ] # Easy
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
