Title: [208679] trunk/Source/WebCore
Revision
208679
Author
[email protected]
Date
2016-11-14 05:48:57 -0800 (Mon, 14 Nov 2016)

Log Message

Fix the !ENABLE(CSS_BOX_DECORATION_BREAK) build
https://bugs.webkit.org/show_bug.cgi?id=164478

Reviewed by Darin Adler.

* css/parser/CSSParserFastPaths.cpp:
(WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (208678 => 208679)


--- trunk/Source/WebCore/ChangeLog	2016-11-14 13:48:41 UTC (rev 208678)
+++ trunk/Source/WebCore/ChangeLog	2016-11-14 13:48:57 UTC (rev 208679)
@@ -1,5 +1,15 @@
 2016-11-14  Csaba Osztrogonác  <[email protected]>
 
+        Fix the !ENABLE(CSS_BOX_DECORATION_BREAK) build
+        https://bugs.webkit.org/show_bug.cgi?id=164478
+
+        Reviewed by Darin Adler.
+
+        * css/parser/CSSParserFastPaths.cpp:
+        (WebCore::CSSParserFastPaths::isValidKeywordPropertyAndValue):
+
+2016-11-14  Csaba Osztrogonác  <[email protected]>
+
         Fix the !ENABLE(CSS_GRID_LAYOUT) build
         https://bugs.webkit.org/show_bug.cgi?id=164477
 

Modified: trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp (208678 => 208679)


--- trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-11-14 13:48:41 UTC (rev 208678)
+++ trunk/Source/WebCore/css/parser/CSSParserFastPaths.cpp	2016-11-14 13:48:57 UTC (rev 208679)
@@ -680,10 +680,12 @@
 #endif
     case CSSPropertyWebkitBoxAlign:
         return valueID == CSSValueStretch || valueID == CSSValueStart || valueID == CSSValueEnd || valueID == CSSValueCenter || valueID == CSSValueBaseline;
+#if ENABLE(CSS_BOX_DECORATION_BREAK)
     case CSSPropertyWebkitBoxDecorationBreak:
         return valueID == CSSValueClone || valueID == CSSValueSlice;
     case CSSPropertyWebkitBoxDirection:
         return valueID == CSSValueNormal || valueID == CSSValueReverse;
+#endif
     case CSSPropertyWebkitBoxLines:
         return valueID == CSSValueSingle || valueID == CSSValueMultiple;
     case CSSPropertyWebkitBoxOrient:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to