Title: [250916] trunk/Source/WebCore
Revision
250916
Author
cdu...@apple.com
Date
2019-10-09 10:26:50 -0700 (Wed, 09 Oct 2019)

Log Message

Unreviewed, address Darin's post-landing comments for r250912.

The array should be const.

* css/CSSDefaultStyleSheets.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (250915 => 250916)


--- trunk/Source/WebCore/ChangeLog	2019-10-09 17:24:00 UTC (rev 250915)
+++ trunk/Source/WebCore/ChangeLog	2019-10-09 17:26:50 UTC (rev 250916)
@@ -1,3 +1,11 @@
+2019-10-09  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, address Darin's post-landing comments for r250912.
+
+        The array should be const.
+
+        * css/CSSDefaultStyleSheets.cpp:
+
 2019-10-09  Daniel Bates  <daba...@apple.com>
 
         Clean up: Remove pre-macOS Sierra workaround for missing kVK_RightCommand

Modified: trunk/Source/WebCore/css/CSSDefaultStyleSheets.cpp (250915 => 250916)


--- trunk/Source/WebCore/css/CSSDefaultStyleSheets.cpp	2019-10-09 17:24:00 UTC (rev 250915)
+++ trunk/Source/WebCore/css/CSSDefaultStyleSheets.cpp	2019-10-09 17:26:50 UTC (rev 250916)
@@ -93,7 +93,7 @@
 #endif
 
 // 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}" CSS_DARK_MODE_ADDITION "head{display:none}body{margin:8px}div:focus,span:focus,a:focus{outline:auto " DEFAULT_OUTLINE_WIDTH " -webkit-focus-ring-color}a:any-link{color:-webkit-link;text-decoration:underline}a:any-link:active{color:-webkit-activelink}";
+static const char simpleUserAgentStyleSheet[] = "html,body,div{display:block}" CSS_DARK_MODE_ADDITION "head{display:none}body{margin:8px}div:focus,span:focus,a:focus{outline:auto " DEFAULT_OUTLINE_WIDTH " -webkit-focus-ring-color}a:any-link{color:-webkit-link;text-decoration:underline}a:any-link:active{color:-webkit-activelink}";
 
 static inline bool elementCanUseSimpleDefaultStyle(const Element& element)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to