Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Side by Side Diff: Source/core/css/parser/CSSPropertyParser.h

Issue 636993002: [CSS Grid Layout] Upgrade justify-content parsing to CSS3 Box Alignment spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebaseline some tests expectations. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv ed.
4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve d. 5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve d.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); 152 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*);
153 bool parseGridTemplateAreasRow(NamedGridAreaMap&, const size_t, size_t&); 153 bool parseGridTemplateAreasRow(NamedGridAreaMap&, const size_t, size_t&);
154 PassRefPtrWillBeRawPtr<CSSValue> parseGridTemplateAreas(); 154 PassRefPtrWillBeRawPtr<CSSValue> parseGridTemplateAreas();
155 bool parseGridLineNames(CSSParserValueList&, CSSValueList&, CSSGridLineNames Value* = 0); 155 bool parseGridLineNames(CSSParserValueList&, CSSValueList&, CSSGridLineNames Value* = 0);
156 PassRefPtrWillBeRawPtr<CSSValue> parseGridAutoFlow(CSSParserValueList&); 156 PassRefPtrWillBeRawPtr<CSSValue> parseGridAutoFlow(CSSParserValueList&);
157 157
158 bool parseClipShape(CSSPropertyID, bool important); 158 bool parseClipShape(CSSPropertyID, bool important);
159 159
160 bool parseLegacyPosition(CSSPropertyID, bool important); 160 bool parseLegacyPosition(CSSPropertyID, bool important);
161 bool parseItemPositionOverflowPosition(CSSPropertyID, bool important); 161 bool parseItemPositionOverflowPosition(CSSPropertyID, bool important);
162 PassRefPtrWillBeRawPtr<CSSValue> parseContentDistributionOverflowPosition();
162 163
163 PassRefPtrWillBeRawPtr<CSSValue> parseShapeProperty(CSSPropertyID propId); 164 PassRefPtrWillBeRawPtr<CSSValue> parseShapeProperty(CSSPropertyID propId);
164 PassRefPtrWillBeRawPtr<CSSValue> parseBasicShapeAndOrBox(); 165 PassRefPtrWillBeRawPtr<CSSValue> parseBasicShapeAndOrBox();
165 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseBasicShape(); 166 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseBasicShape();
166 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); 167 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*);
167 168
168 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueLi st* args); 169 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueLi st* args);
169 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueL ist* args); 170 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueL ist* args);
170 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueL ist* args); 171 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueL ist* args);
171 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeInset(CSSParserValueLis t* args); 172 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeInset(CSSParserValueLis t* args);
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 friend PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGradientColorOrKeyword (CSSPropertyParser*, CSSParserValue*); 377 friend PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGradientColorOrKeyword (CSSPropertyParser*, CSSParserValue*);
377 }; 378 };
378 379
379 CSSPropertyID cssPropertyID(const CSSParserString&); 380 CSSPropertyID cssPropertyID(const CSSParserString&);
380 CSSPropertyID cssPropertyID(const String&); 381 CSSPropertyID cssPropertyID(const String&);
381 CSSValueID cssValueKeywordID(const CSSParserString&); 382 CSSValueID cssValueKeywordID(const CSSParserString&);
382 383
383 } // namespace blink 384 } // namespace blink
384 385
385 #endif // CSSPropertyParser_h 386 #endif // CSSPropertyParser_h
OLDNEW
« no previous file with comments | « Source/core/css/parser/CSSParserFastPaths.cpp ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698