Ignore:
Timestamp:
May 25, 2016, 4:17:38 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r201373.
https://bugs.webkit.org/show_bug.cgi?id=158064

Several tests are hitting the ASSERT (Requested by rego on
#webkit).

Reverted changeset:

"[css-grid] Simplify grid track sizes parsing"
https://bugs.webkit.org/show_bug.cgi?id=158021
http://trac.webkit.org/changeset/201373

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/css/CSSParser.h

    r201373 r201378  
    240240    bool parseSingleGridAreaLonghand(RefPtr<CSSValue>&);
    241241    RefPtr<CSSValue> parseGridTrackList();
    242     bool parseGridTrackRepeatFunction(CSSValueList&, bool& isAutoRepeat, bool& allTracksAreFixedSized);
    243     RefPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inputList);
    244     RefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue&);
     242    bool parseGridTrackRepeatFunction(CSSValueList&, bool& isAutoRepeat);
     243    enum TrackSizeRestriction { FixedSizeOnly, InflexibleSizeOnly, AllowAll };
     244    RefPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inputList, TrackSizeRestriction = AllowAll);
     245    RefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue&, TrackSizeRestriction = AllowAll);
    245246    bool parseGridTemplateAreasRow(NamedGridAreaMap&, const unsigned, unsigned&);
    246247    RefPtr<CSSValue> parseGridTemplateAreas();
Note: See TracChangeset for help on using the changeset viewer.