Title: [248723] branches/safari-608-branch/Source/WebCore
Revision
248723
Author
[email protected]
Date
2019-08-15 10:20:52 -0700 (Thu, 15 Aug 2019)

Log Message

Cherry-pick r248648. rdar://problem/54333931

    Focus rings are black
    https://bugs.webkit.org/show_bug.cgi?id=200593
    <rdar://problem/54145925>

    Patch by Daniel Bates <[email protected]> on 2019-08-13
    Reviewed by Wenson Hsieh.

    Work around <rdar://problem/50838886> and make focus rings a pretty blue.

    * rendering/RenderThemeIOS.mm:
    (WebCore::RenderThemeIOS::platformFocusRingColor const):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248648 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-608-branch/Source/WebCore/ChangeLog (248722 => 248723)


--- branches/safari-608-branch/Source/WebCore/ChangeLog	2019-08-15 17:20:20 UTC (rev 248722)
+++ branches/safari-608-branch/Source/WebCore/ChangeLog	2019-08-15 17:20:52 UTC (rev 248723)
@@ -1,3 +1,34 @@
+2019-08-15  Alan Coon  <[email protected]>
+
+        Cherry-pick r248648. rdar://problem/54333931
+
+    Focus rings are black
+    https://bugs.webkit.org/show_bug.cgi?id=200593
+    <rdar://problem/54145925>
+    
+    Patch by Daniel Bates <[email protected]> on 2019-08-13
+    Reviewed by Wenson Hsieh.
+    
+    Work around <rdar://problem/50838886> and make focus rings a pretty blue.
+    
+    * rendering/RenderThemeIOS.mm:
+    (WebCore::RenderThemeIOS::platformFocusRingColor const):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248648 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-08-13  Daniel Bates  <[email protected]>
+
+            Focus rings are black
+            https://bugs.webkit.org/show_bug.cgi?id=200593
+            <rdar://problem/54145925>
+
+            Reviewed by Wenson Hsieh.
+
+            Work around <rdar://problem/50838886> and make focus rings a pretty blue.
+
+            * rendering/RenderThemeIOS.mm:
+            (WebCore::RenderThemeIOS::platformFocusRingColor const):
+
 2019-08-13  Alan Coon  <[email protected]>
 
         Cherry-pick r248604. rdar://problem/54282801

Modified: branches/safari-608-branch/Source/WebCore/rendering/RenderThemeIOS.mm (248722 => 248723)


--- branches/safari-608-branch/Source/WebCore/rendering/RenderThemeIOS.mm	2019-08-15 17:20:20 UTC (rev 248722)
+++ branches/safari-608-branch/Source/WebCore/rendering/RenderThemeIOS.mm	2019-08-15 17:20:52 UTC (rev 248723)
@@ -1132,7 +1132,8 @@
 #if ENABLE(FULL_KEYBOARD_ACCESS)
 Color RenderThemeIOS::platformFocusRingColor(OptionSet<StyleColor::Options>) const
 {
-    return colorFromUIColor([PAL::getUIColorClass() keyboardFocusIndicatorColor]);
+    // FIXME: Should be using -keyboardFocusIndicatorColor. For now, work around <rdar://problem/50838886>.
+    return colorFromUIColor([PAL::getUIColorClass() systemBlueColor]);
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to