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

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

Issue 179383003: [CSS Grid Layout] Disallow using <ident> and function names as <custom-ident> (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 PassRefPtrWillBeRawPtr<CSSValue> parseGridPosition(); 149 PassRefPtrWillBeRawPtr<CSSValue> parseGridPosition();
150 bool parseIntegerOrStringFromGridPosition(RefPtrWillBeRawPtr<CSSPrimitiveVal ue>& numericValue, RefPtrWillBeRawPtr<CSSPrimitiveValue>& gridLineName); 150 bool parseIntegerOrStringFromGridPosition(RefPtrWillBeRawPtr<CSSPrimitiveVal ue>& numericValue, RefPtrWillBeRawPtr<CSSPrimitiveValue>& gridLineName);
151 bool parseGridItemPositionShorthand(CSSPropertyID, bool important); 151 bool parseGridItemPositionShorthand(CSSPropertyID, bool important);
152 bool parseGridAreaShorthand(bool important); 152 bool parseGridAreaShorthand(bool important);
153 bool parseSingleGridAreaLonghand(RefPtrWillBeRawPtr<CSSValue>&); 153 bool parseSingleGridAreaLonghand(RefPtrWillBeRawPtr<CSSValue>&);
154 bool parseGridTrackList(CSSPropertyID, bool important); 154 bool parseGridTrackList(CSSPropertyID, bool important);
155 bool parseGridTrackRepeatFunction(CSSValueList&); 155 bool parseGridTrackRepeatFunction(CSSValueList&);
156 PassRefPtrWillBeRawPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inpu tList); 156 PassRefPtrWillBeRawPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inpu tList);
157 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); 157 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*);
158 PassRefPtrWillBeRawPtr<CSSValue> parseGridTemplateAreas(); 158 PassRefPtrWillBeRawPtr<CSSValue> parseGridTemplateAreas();
159 void parseGridLineNames(CSSParserValueList* inputList, CSSValueList&); 159 bool parseGridLineNames(CSSParserValueList* inputList, CSSValueList&);
160 160
161 bool parseClipShape(CSSPropertyID, bool important); 161 bool parseClipShape(CSSPropertyID, bool important);
162 162
163 bool parseItemPositionOverflowPosition(CSSPropertyID, bool important); 163 bool parseItemPositionOverflowPosition(CSSPropertyID, bool important);
164 164
165 PassRefPtrWillBeRawPtr<CSSValue> parseShapeProperty(CSSPropertyID propId); 165 PassRefPtrWillBeRawPtr<CSSValue> parseShapeProperty(CSSPropertyID propId);
166 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseBasicShape(); 166 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseBasicShape();
167 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); 167 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*);
168 168
169 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValu eList* args); 169 PassRefPtrWillBeRawPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValu eList* args);
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 400
401 CSSPropertyID cssPropertyID(const CSSParserString&); 401 CSSPropertyID cssPropertyID(const CSSParserString&);
402 CSSPropertyID cssPropertyID(const String&); 402 CSSPropertyID cssPropertyID(const String&);
403 CSSValueID cssValueKeywordID(const CSSParserString&); 403 CSSValueID cssValueKeywordID(const CSSParserString&);
404 404
405 bool isValidNthToken(const CSSParserString&); 405 bool isValidNthToken(const CSSParserString&);
406 406
407 } // namespace WebCore 407 } // namespace WebCore
408 408
409 #endif // CSSPropertyParser_h 409 #endif // CSSPropertyParser_h
OLDNEW
« Source/core/css/parser/BisonCSSParser-in.cpp ('K') | « Source/core/css/parser/BisonCSSParser-in.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698