Title: [153729] trunk/LayoutTests
Revision
153729
Author
a...@apple.com
Date
2013-08-05 16:06:30 -0700 (Mon, 05 Aug 2013)

Log Message

        <rdar://problem/13128990> chunked-progress-event-expectedLength.html is flaky on Mac
        https://bugs.webkit.org/show_bug.cgi?id=119498

        Reviewed by Brady Eidson.

        * http/tests/xmlhttprequest/resources/chunked-transfer.php: This test relies on
        length not being known upfront, which is not the case when the resource is served
        form cache.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (153728 => 153729)


--- trunk/LayoutTests/ChangeLog	2013-08-05 22:11:50 UTC (rev 153728)
+++ trunk/LayoutTests/ChangeLog	2013-08-05 23:06:30 UTC (rev 153729)
@@ -1,5 +1,16 @@
 2013-08-05  Alexey Proskuryakov  <a...@apple.com>
 
+        <rdar://problem/13128990> chunked-progress-event-expectedLength.html is flaky on Mac
+        https://bugs.webkit.org/show_bug.cgi?id=119498
+
+        Reviewed by Brady Eidson.
+
+        * http/tests/xmlhttprequest/resources/chunked-transfer.php: This test relies on
+        length not being known upfront, which is not the case when the resource is served
+        form cache.
+
+2013-08-05  Alexey Proskuryakov  <a...@apple.com>
+
         <rdar://problem/14637103> REGRESSION (r153060?): Microphone appears in the way
         of text when dictating an e-mail
         https://bugs.webkit.org/show_bug.cgi?id=119496

Modified: trunk/LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer.php (153728 => 153729)


--- trunk/LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer.php	2013-08-05 22:11:50 UTC (rev 153728)
+++ trunk/LayoutTests/http/tests/xmlhttprequest/resources/chunked-transfer.php	2013-08-05 23:06:30 UTC (rev 153729)
@@ -1,5 +1,6 @@
 <?php 
 header("Transfer-encoding: chunked");
+header("Cache-Control: no-cache, no-store");
 flush();
 printf("4\r\n<a/>\r\n");
 flush();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to