Title: [167806] trunk/Source/WebCore
Revision
167806
Author
[email protected]
Date
2014-04-25 08:15:52 -0700 (Fri, 25 Apr 2014)

Log Message

REGRESSION(r167799): Breaks debug build
https://bugs.webkit.org/show_bug.cgi?id=132194

Patch by Javier Fernandez <[email protected]> on 2014-04-25
Reviewed by Andrei Bucur.

Fix the debug bots after r167799

No new tests, no new functionality.

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

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (167805 => 167806)


--- trunk/Source/WebCore/ChangeLog	2014-04-25 14:28:24 UTC (rev 167805)
+++ trunk/Source/WebCore/ChangeLog	2014-04-25 15:15:52 UTC (rev 167806)
@@ -1,3 +1,17 @@
+2014-04-25  Javier Fernandez  <[email protected]>
+
+        REGRESSION(r167799): Breaks debug build
+        https://bugs.webkit.org/show_bug.cgi?id=132194
+
+        Reviewed by Andrei Bucur.
+
+        Fix the debug bots after r167799
+
+        No new tests, no new functionality.
+
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseGridTemplateShorthand):
+
 2014-04-25  Miyoung Shin  <[email protected]>
 
         Web process is crashed during dispatching touchEvent created by JS.

Modified: trunk/Source/WebCore/css/CSSParser.cpp (167805 => 167806)


--- trunk/Source/WebCore/css/CSSParser.cpp	2014-04-25 14:28:24 UTC (rev 167805)
+++ trunk/Source/WebCore/css/CSSParser.cpp	2014-04-25 15:15:52 UTC (rev 167806)
@@ -4861,10 +4861,10 @@
 
 bool CSSParser::parseGridTemplateShorthand(bool important)
 {
-    ASSERT(RuntimeEnabledFeatures::cssGridLayoutEnabled());
+    ASSERT(cssGridLayoutEnabled());
 
     ShorthandScope scope(this, CSSPropertyWebkitGridTemplate);
-    ASSERT(gridTemplateShorthand().length() == 3);
+    ASSERT(shorthandForProperty(CSSPropertyWebkitGridTemplate).length() == 3);
 
     // At least "none" must be defined.
     if (!m_valueList->current())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to