Title: [141872] trunk/Source/WebCore
Revision
141872
Author
[email protected]
Date
2013-02-05 01:13:47 -0800 (Tue, 05 Feb 2013)

Log Message

[chromium] Unreviewed: Fix broken SVG-disabled build.
https://bugs.webkit.org/show_bug.cgi?id=108916

The new enum value CSSPropertyWebkitGridAutoFlow was introduced in
r141787, and accidentally left out of CSSParser::parseValue's big
switch. This causes problems in non-SVG builds.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (141871 => 141872)


--- trunk/Source/WebCore/ChangeLog	2013-02-05 09:10:59 UTC (rev 141871)
+++ trunk/Source/WebCore/ChangeLog	2013-02-05 09:13:47 UTC (rev 141872)
@@ -1,3 +1,15 @@
+2013-02-05  Mike West  <[email protected]>
+
+        [chromium] Unreviewed: Fix broken SVG-disabled build.
+        https://bugs.webkit.org/show_bug.cgi?id=108916
+
+        The new enum value CSSPropertyWebkitGridAutoFlow was introduced in
+        r141787, and accidentally left out of CSSParser::parseValue's big
+        switch. This causes problems in non-SVG builds.
+
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseValue):
+
 2013-02-05  Tommy Widenflycht  <[email protected]>
 
         MediaStream API: Update RTCPeerConnections stream accessors to match the latest specification

Modified: trunk/Source/WebCore/css/CSSParser.cpp (141871 => 141872)


--- trunk/Source/WebCore/css/CSSParser.cpp	2013-02-05 09:10:59 UTC (rev 141871)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2013-02-05 09:13:47 UTC (rev 141872)
@@ -2897,6 +2897,7 @@
     case CSSPropertyWebkitFontKerning:
     case CSSPropertyWebkitFontSmoothing:
     case CSSPropertyWebkitHyphens:
+    case CSSPropertyWebkitGridAutoFlow:
     case CSSPropertyWebkitLineAlign:
     case CSSPropertyWebkitLineBreak:
     case CSSPropertyWebkitLineSnap:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to