Ignore:
Timestamp:
Jun 25, 2012, 4:15:44 PM (13 years ago)
Author:
[email protected]
Message:

Fixing compilation failure in StyleResolver.cpp/CSSParser.cpp
https://bugs.webkit.org/show_bug.cgi?id=89892

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

Adding CSSPropertyVariable to switch statements in CSSParser and
StyleResolver to fix compilation errors under ninja/clang. I've
added both as new cases to the switches, with FIXME comments for
implementation.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseValue):

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::collectMatchingRulesForList):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/StyleResolver.cpp

    r121187 r121192  
    41614161        return;
    41624162    }
    4163 
     4163#if ENABLE(CSS_VARIABLES)
     4164    case CSSPropertyVariable:
     4165        // FIXME: This should have an actual implementation.
     4166        return;
     4167#endif
    41644168    // These properties are implemented in the StyleBuilder lookup table.
    41654169    case CSSPropertyBackgroundAttachment:
Note: See TracChangeset for help on using the changeset viewer.