Title: [119094] trunk/Source/WebCore
Revision
119094
Author
[email protected]
Date
2012-05-31 05:41:11 -0700 (Thu, 31 May 2012)

Log Message

Fixing compilation with SVG disabled.
https://bugs.webkit.org/show_bug.cgi?id=87944

This patch adds the missing enumeration value
'CSSPropertyWebkitBoxDecorationBreak' into switch statements to make
clang happy.

Patch by Mike West <[email protected]> on 2012-05-31
Reviewed by Alexis Menard.

* css/CSSParser.cpp:
(WebCore::CSSParser::parseValue):
* css/StyleResolver.cpp:
(WebCore::StyleResolver::collectMatchingRulesForList):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119093 => 119094)


--- trunk/Source/WebCore/ChangeLog	2012-05-31 12:33:17 UTC (rev 119093)
+++ trunk/Source/WebCore/ChangeLog	2012-05-31 12:41:11 UTC (rev 119094)
@@ -1,3 +1,19 @@
+2012-05-31  Mike West  <[email protected]>
+
+        Fixing compilation with SVG disabled.
+        https://bugs.webkit.org/show_bug.cgi?id=87944
+
+        This patch adds the missing enumeration value
+        'CSSPropertyWebkitBoxDecorationBreak' into switch statements to make
+        clang happy.
+
+        Reviewed by Alexis Menard.
+
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseValue):
+        * css/StyleResolver.cpp:
+        (WebCore::StyleResolver::collectMatchingRulesForList):
+
 2012-05-31  Yoshifumi Inoue  <[email protected]>
 
         [Platform] Implementation of Decimal(int32_t) isn't portable.

Modified: trunk/Source/WebCore/css/CSSParser.cpp (119093 => 119094)


--- trunk/Source/WebCore/css/CSSParser.cpp	2012-05-31 12:33:17 UTC (rev 119093)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2012-05-31 12:41:11 UTC (rev 119094)
@@ -2543,6 +2543,7 @@
     case CSSPropertyWebkitBorderFit:
     case CSSPropertyWebkitBorderStartStyle:
     case CSSPropertyWebkitBoxAlign:
+    case CSSPropertyWebkitBoxDecorationBreak:
     case CSSPropertyWebkitBoxDirection:
     case CSSPropertyWebkitBoxLines:
     case CSSPropertyWebkitBoxOrient:

Modified: trunk/Source/WebCore/css/StyleResolver.cpp (119093 => 119094)


--- trunk/Source/WebCore/css/StyleResolver.cpp	2012-05-31 12:33:17 UTC (rev 119093)
+++ trunk/Source/WebCore/css/StyleResolver.cpp	2012-05-31 12:41:11 UTC (rev 119094)
@@ -4099,6 +4099,7 @@
     case CSSPropertyWebkitBorderRadius:
     case CSSPropertyWebkitBorderVerticalSpacing:
     case CSSPropertyWebkitBoxAlign:
+    case CSSPropertyWebkitBoxDecorationBreak:
     case CSSPropertyWebkitBoxDirection:
     case CSSPropertyWebkitBoxFlex:
     case CSSPropertyWebkitBoxFlexGroup:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to