Title: [274756] trunk/Source/WebCore
Revision
274756
Author
[email protected]
Date
2021-03-22 11:25:02 -0700 (Mon, 22 Mar 2021)

Log Message

Fix a mistake in r274725 spotted by Darin.

I accidentally removed the case statement for CSSPropertyWebkitTextSizeAdjust.

* css/parser/CSSParserContext.cpp:
(WebCore::CSSParserContext::isPropertyRuntimeDisabled const):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (274755 => 274756)


--- trunk/Source/WebCore/ChangeLog	2021-03-22 18:25:00 UTC (rev 274755)
+++ trunk/Source/WebCore/ChangeLog	2021-03-22 18:25:02 UTC (rev 274756)
@@ -1,5 +1,14 @@
 2021-03-22  Simon Fraser  <[email protected]>
 
+        Fix a mistake in r274725 spotted by Darin.
+
+        I accidentally removed the case statement for CSSPropertyWebkitTextSizeAdjust.
+
+        * css/parser/CSSParserContext.cpp:
+        (WebCore::CSSParserContext::isPropertyRuntimeDisabled const):
+
+2021-03-22  Simon Fraser  <[email protected]>
+
         Rename WebCore's DisplayRefreshMonitorMac to indicate that it's only used in legacy WebKit
         https://bugs.webkit.org/show_bug.cgi?id=223543
 

Modified: trunk/Source/WebCore/css/parser/CSSParserContext.cpp (274755 => 274756)


--- trunk/Source/WebCore/css/parser/CSSParserContext.cpp	2021-03-22 18:25:00 UTC (rev 274755)
+++ trunk/Source/WebCore/css/parser/CSSParserContext.cpp	2021-03-22 18:25:02 UTC (rev 274756)
@@ -153,6 +153,7 @@
     case CSSPropertyScrollBehavior:
         return !scrollBehaviorEnabled;
 #if ENABLE(TEXT_AUTOSIZING) && !PLATFORM(IOS_FAMILY)
+    case CSSPropertyWebkitTextSizeAdjust:
         return !textAutosizingEnabled;
 #endif
 #if ENABLE(OVERFLOW_SCROLLING_TOUCH)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to