Title: [283468] trunk/Tools
Revision
283468
Author
[email protected]
Date
2021-10-03 10:10:45 -0700 (Sun, 03 Oct 2021)

Log Message

Some layout tests with Japanese glyphs fail if Japanese is included in the system "Preferred Languages" settings
https://bugs.webkit.org/show_bug.cgi?id=231112

Reviewed by Simon Fraser.

Simply set the default locale to en-US. Tests can still override it.

* WebKitTestRunner/TestOptions.cpp:
(WTR::TestOptions::defaults):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (283467 => 283468)


--- trunk/Tools/ChangeLog	2021-10-03 17:02:44 UTC (rev 283467)
+++ trunk/Tools/ChangeLog	2021-10-03 17:10:45 UTC (rev 283468)
@@ -1,3 +1,15 @@
+2021-10-03  Myles C. Maxfield  <[email protected]>
+
+        Some layout tests with Japanese glyphs fail if Japanese is included in the system "Preferred Languages" settings
+        https://bugs.webkit.org/show_bug.cgi?id=231112
+
+        Reviewed by Simon Fraser.
+
+        Simply set the default locale to en-US. Tests can still override it.
+
+        * WebKitTestRunner/TestOptions.cpp:
+        (WTR::TestOptions::defaults):
+
 2021-10-02  Alex Christensen  <[email protected]>
 
         Migrate some tests from TCPServer to HTTPServer

Modified: trunk/Tools/WebKitTestRunner/TestOptions.cpp (283467 => 283468)


--- trunk/Tools/WebKitTestRunner/TestOptions.cpp	2021-10-03 17:02:44 UTC (rev 283467)
+++ trunk/Tools/WebKitTestRunner/TestOptions.cpp	2021-10-03 17:10:45 UTC (rev 283468)
@@ -179,7 +179,7 @@
             { "standaloneWebApplicationURL", { } },
         };
         features.stringVectorTestRunnerFeatures = {
-            { "language", { } },
+            { "language", { "en-US" } },
         };
     }
     
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to