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

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

Issue 131773002: Broaden justify-self's parsing name (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 bool parseSingleGridAreaLonghand(RefPtr<CSSValue>&); 169 bool parseSingleGridAreaLonghand(RefPtr<CSSValue>&);
170 bool parseGridTrackList(CSSPropertyID, bool important); 170 bool parseGridTrackList(CSSPropertyID, bool important);
171 bool parseGridTrackRepeatFunction(CSSValueList&); 171 bool parseGridTrackRepeatFunction(CSSValueList&);
172 PassRefPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inputList); 172 PassRefPtr<CSSValue> parseGridTrackSize(CSSParserValueList& inputList);
173 PassRefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); 173 PassRefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*);
174 PassRefPtr<CSSValue> parseGridTemplate(); 174 PassRefPtr<CSSValue> parseGridTemplate();
175 void parseGridLineNames(CSSParserValueList* inputList, CSSValueList&); 175 void parseGridLineNames(CSSParserValueList* inputList, CSSValueList&);
176 176
177 bool parseClipShape(CSSPropertyID, bool important); 177 bool parseClipShape(CSSPropertyID, bool important);
178 178
179 bool parseJustifySelf(CSSPropertyID, bool important); 179 bool parseItemPositionOverflowPosition(CSSPropertyID, bool important);
180 180
181 PassRefPtr<CSSValue> parseShapeProperty(CSSPropertyID propId); 181 PassRefPtr<CSSValue> parseShapeProperty(CSSPropertyID propId);
182 PassRefPtr<CSSPrimitiveValue> parseBasicShape(); 182 PassRefPtr<CSSPrimitiveValue> parseBasicShape();
183 PassRefPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); 183 PassRefPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*);
184 184
185 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args) ; 185 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args) ;
186 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); 186 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args);
187 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeCircle(CSSParserValueList * args); 187 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeCircle(CSSParserValueList * args);
188 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args); 188 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args);
189 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeEllipse(CSSParserValueLis t*); 189 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeEllipse(CSSParserValueLis t*);
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 bool isValidNthToken(const CSSParserString&); 639 bool isValidNthToken(const CSSParserString&);
640 640
641 inline int cssyylex(void* yylval, BisonCSSParser* parser) 641 inline int cssyylex(void* yylval, BisonCSSParser* parser)
642 { 642 {
643 return parser->m_tokenizer.lex(yylval); 643 return parser->m_tokenizer.lex(yylval);
644 } 644 }
645 645
646 } // namespace WebCore 646 } // namespace WebCore
647 647
648 #endif // CSSParser_h 648 #endif // CSSParser_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSPrimitiveValueMappings.h ('k') | Source/core/css/parser/BisonCSSParser-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698