Title: [158722] trunk/Source/WebCore
Revision
158722
Author
[email protected]
Date
2013-11-05 22:02:35 -0800 (Tue, 05 Nov 2013)

Log Message

simpleUserAgentStyleSheet doesn't have focus ring on anchor element
https://bugs.webkit.org/show_bug.cgi?id=123867

Reviewed by Andreas Kling.

Merge https://chromium.googlesource.com/chromium/blink/+/08ecc23c4d80be9969918c4baf0ac83dc6cb6cbd

* css/CSSDefaultStyleSheets.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (158721 => 158722)


--- trunk/Source/WebCore/ChangeLog	2013-11-06 06:00:46 UTC (rev 158721)
+++ trunk/Source/WebCore/ChangeLog	2013-11-06 06:02:35 UTC (rev 158722)
@@ -1,5 +1,16 @@
 2013-11-05  Ryosuke Niwa  <[email protected]>
 
+        simpleUserAgentStyleSheet doesn't have focus ring on anchor element
+        https://bugs.webkit.org/show_bug.cgi?id=123867
+
+        Reviewed by Andreas Kling.
+
+        Merge https://chromium.googlesource.com/chromium/blink/+/08ecc23c4d80be9969918c4baf0ac83dc6cb6cbd
+
+        * css/CSSDefaultStyleSheets.cpp:
+
+2013-11-05  Ryosuke Niwa  <[email protected]>
+
         valueForBorderRadiusShorthand returns wrong values in some case
         https://bugs.webkit.org/show_bug.cgi?id=123866
 

Modified: trunk/Source/WebCore/css/CSSDefaultStyleSheets.cpp (158721 => 158722)


--- trunk/Source/WebCore/css/CSSDefaultStyleSheets.cpp	2013-11-06 06:00:46 UTC (rev 158721)
+++ trunk/Source/WebCore/css/CSSDefaultStyleSheets.cpp	2013-11-06 06:02:35 UTC (rev 158722)
@@ -59,7 +59,7 @@
 StyleSheetContents* CSSDefaultStyleSheets::plugInsStyleSheet;
 
 // FIXME: It would be nice to use some mechanism that guarantees this is in sync with the real UA stylesheet.
-static const char* simpleUserAgentStyleSheet = "html,body,div{display:block}head{display:none}body{margin:8px}div:focus,span:focus{outline:auto 5px -webkit-focus-ring-color}a:-webkit-any-link{color:-webkit-link;text-decoration:underline}a:-webkit-any-link:active{color:-webkit-activelink}";
+static const char* simpleUserAgentStyleSheet = "html,body,div{display:block}head{display:none}body{margin:8px}div:focus,span:focus,a:focus{outline:auto 5px -webkit-focus-ring-color}a:-webkit-any-link{color:-webkit-link;text-decoration:underline}a:-webkit-any-link:active{color:-webkit-activelink}";
 
 static inline bool elementCanUseSimpleDefaultStyle(Element* e)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to