Changeset 167806 in webkit


Ignore:
Timestamp:
Apr 25, 2014 8:15:52 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Javier Fernandez <jfernandez@igalia.com> 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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r167805 r167806  
     12014-04-25  Javier Fernandez  <jfernandez@igalia.com>
     2
     3        REGRESSION(r167799): Breaks debug build
     4        https://bugs.webkit.org/show_bug.cgi?id=132194
     5
     6        Reviewed by Andrei Bucur.
     7
     8        Fix the debug bots after r167799
     9
     10        No new tests, no new functionality.
     11
     12        * css/CSSParser.cpp:
     13        (WebCore::CSSParser::parseGridTemplateShorthand):
     14
    1152014-04-25  Miyoung Shin  <myid.shin@samsung.com>
    216
  • trunk/Source/WebCore/css/CSSParser.cpp

    r167799 r167806  
    48624862bool CSSParser::parseGridTemplateShorthand(bool important)
    48634863{
    4864     ASSERT(RuntimeEnabledFeatures::cssGridLayoutEnabled());
     4864    ASSERT(cssGridLayoutEnabled());
    48654865
    48664866    ShorthandScope scope(this, CSSPropertyWebkitGridTemplate);
    4867     ASSERT(gridTemplateShorthand().length() == 3);
     4867    ASSERT(shorthandForProperty(CSSPropertyWebkitGridTemplate).length() == 3);
    48684868
    48694869    // At least "none" must be defined.
Note: See TracChangeset for help on using the changeset viewer.