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

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

Issue 17090005: [CSS Grid Layout] Implement 'justify-self' parsing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed a bug in parseColor uncovered by the patch 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
« no previous file with comments | « Source/core/css/RuntimeCSSEnabled.cpp ('k') | Source/core/css/parser/BisonCSSParser-in.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
180
179 PassRefPtr<CSSValue> parseShapeProperty(CSSPropertyID propId); 181 PassRefPtr<CSSValue> parseShapeProperty(CSSPropertyID propId);
180 PassRefPtr<CSSPrimitiveValue> parseBasicShape(); 182 PassRefPtr<CSSPrimitiveValue> parseBasicShape();
181 PassRefPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); 183 PassRefPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*);
184
182 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args) ; 185 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args) ;
183 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); 186 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args);
184 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeCircle(CSSParserValueList * args); 187 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeCircle(CSSParserValueList * args);
185 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args); 188 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args);
186 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeEllipse(CSSParserValueLis t*); 189 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeEllipse(CSSParserValueLis t*);
187 PassRefPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueList* args); 190 PassRefPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueList* args);
188 PassRefPtr<CSSBasicShape> parseBasicShapeInsetRectangle(CSSParserValueList* args); 191 PassRefPtr<CSSBasicShape> parseBasicShapeInsetRectangle(CSSParserValueList* args);
189 192
190 bool parseFont(bool important); 193 bool parseFont(bool important);
191 PassRefPtr<CSSValueList> parseFontFamily(); 194 PassRefPtr<CSSValueList> parseFontFamily();
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 bool isValidNthToken(const CSSParserString&); 639 bool isValidNthToken(const CSSParserString&);
637 640
638 inline int cssyylex(void* yylval, BisonCSSParser* parser) 641 inline int cssyylex(void* yylval, BisonCSSParser* parser)
639 { 642 {
640 return parser->m_tokenizer.lex(yylval); 643 return parser->m_tokenizer.lex(yylval);
641 } 644 }
642 645
643 } // namespace WebCore 646 } // namespace WebCore
644 647
645 #endif // CSSParser_h 648 #endif // CSSParser_h
OLDNEW
« no previous file with comments | « Source/core/css/RuntimeCSSEnabled.cpp ('k') | Source/core/css/parser/BisonCSSParser-in.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698