Title: [204201] trunk/LayoutTests
Revision
204201
Author
[email protected]
Date
2016-08-05 16:54:09 -0700 (Fri, 05 Aug 2016)

Log Message

Work around broken <Files> directive in some Apache versions
https://bugs.webkit.org/show_bug.cgi?id=160610

Reviewed by Daniel Bates.

The problem is tracked as rdar://problem/27725655

* http/tests/misc/.htaccess:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (204200 => 204201)


--- trunk/LayoutTests/ChangeLog	2016-08-05 23:41:33 UTC (rev 204200)
+++ trunk/LayoutTests/ChangeLog	2016-08-05 23:54:09 UTC (rev 204201)
@@ -1,3 +1,14 @@
+2016-08-05  Alexey Proskuryakov  <[email protected]>
+
+        Work around broken <Files> directive in some Apache versions
+        https://bugs.webkit.org/show_bug.cgi?id=160610
+
+        Reviewed by Daniel Bates.
+
+        The problem is tracked as rdar://problem/27725655
+
+        * http/tests/misc/.htaccess:
+
 2016-08-05  Ryan Haddad  <[email protected]>
 
         Rebaselining compositing/masks/compositing-clip-path-change-no-repaint.html for ios-simulator.

Modified: trunk/LayoutTests/http/tests/misc/.htaccess (204200 => 204201)


--- trunk/LayoutTests/http/tests/misc/.htaccess	2016-08-05 23:41:33 UTC (rev 204200)
+++ trunk/LayoutTests/http/tests/misc/.htaccess	2016-08-05 23:54:09 UTC (rev 204201)
@@ -1,7 +1,6 @@
 <Files acid3.html>
     AddHandler server-parsed .html
 </Files>
-<Files "a">
+<FilesMatch "^a$">
 ForceType "text/css; charset=utf-8"
-
-</Files>
+</FilesMatch>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to