Title: [227137] trunk/LayoutTests
Revision
227137
Author
[email protected]
Date
2018-01-18 00:33:14 -0800 (Thu, 18 Jan 2018)

Log Message

Layout Test http/tests/images/image-supports-video.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=181008
<rdar://problem/36143943>

Reviewed by Youenn Fablet.

Send a "Cache-control: nocache" header from the HTTP server when the image resource is
requested.

* http/tests/resources/redirect-to-video-if-accepted.php:
* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (227136 => 227137)


--- trunk/LayoutTests/ChangeLog	2018-01-18 08:27:27 UTC (rev 227136)
+++ trunk/LayoutTests/ChangeLog	2018-01-18 08:33:14 UTC (rev 227137)
@@ -1,3 +1,17 @@
+2018-01-18  Jer Noble  <[email protected]>
+
+        Layout Test http/tests/images/image-supports-video.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=181008
+        <rdar://problem/36143943>
+
+        Reviewed by Youenn Fablet.
+
+        Send a "Cache-control: nocache" header from the HTTP server when the image resource is
+        requested.
+
+        * http/tests/resources/redirect-to-video-if-accepted.php:
+        * platform/mac-wk1/TestExpectations:
+
 2018-01-17  Jer Noble  <[email protected]>
 
         WebVTT served via HLS never results in cues

Modified: trunk/LayoutTests/http/tests/resources/redirect-to-video-if-accepted.php (227136 => 227137)


--- trunk/LayoutTests/http/tests/resources/redirect-to-video-if-accepted.php	2018-01-18 08:27:27 UTC (rev 227136)
+++ trunk/LayoutTests/http/tests/resources/redirect-to-video-if-accepted.php	2018-01-18 08:33:14 UTC (rev 227137)
@@ -2,6 +2,7 @@
 if (strpos($_SERVER['HTTP_ACCEPT'], 'video/*') !== false) {
     header('HTTP/1.1 301 Moved Permanently');
     header('Location: ' . $_GET['video']);
+    header('Cache-Control: no-cache, must-revalidate');
     return;
 }
 

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (227136 => 227137)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2018-01-18 08:27:27 UTC (rev 227136)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2018-01-18 08:33:14 UTC (rev 227137)
@@ -485,7 +485,5 @@
 # User-installed fonts test infrastructure is not present in WK1
 webkit.org/b/180062 fast/text/user-installed-fonts [ ImageOnlyFailure ]
 
-webkit.org/b/181008 http/tests/images/image-supports-video.html [ Pass Failure ]
-
 webkit.org/b/180997 svg/animations/smil-leak-element-instances-noBaseValRef.svg [ Pass Failure ]
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to