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

Side by Side Diff: Source/WebCore/css/CSSParser.h

Issue 13992003: Add support for parsing <grid-line> that includes a 'span' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 PassRefPtr<CSSValue> parseAnimationProperty(AnimationParseContext&); 151 PassRefPtr<CSSValue> parseAnimationProperty(AnimationParseContext&);
152 PassRefPtr<CSSValue> parseAnimationTimingFunction(); 152 PassRefPtr<CSSValue> parseAnimationTimingFunction();
153 153
154 bool parseTransformOriginShorthand(RefPtr<CSSValue>&, RefPtr<CSSValue>&, Ref Ptr<CSSValue>&); 154 bool parseTransformOriginShorthand(RefPtr<CSSValue>&, RefPtr<CSSValue>&, Ref Ptr<CSSValue>&);
155 bool parseCubicBezierTimingFunctionValue(CSSParserValueList*& args, double& result); 155 bool parseCubicBezierTimingFunctionValue(CSSParserValueList*& args, double& result);
156 bool parseAnimationProperty(CSSPropertyID, RefPtr<CSSValue>&, AnimationParse Context&); 156 bool parseAnimationProperty(CSSPropertyID, RefPtr<CSSValue>&, AnimationParse Context&);
157 bool parseTransitionShorthand(CSSPropertyID, bool important); 157 bool parseTransitionShorthand(CSSPropertyID, bool important);
158 bool parseAnimationShorthand(bool important); 158 bool parseAnimationShorthand(bool important);
159 159
160 bool cssGridLayoutEnabled() const; 160 bool cssGridLayoutEnabled() const;
161 PassRefPtr<CSSValue> parseGridPosition();
161 bool parseGridItemPositionShorthand(CSSPropertyID, bool important); 162 bool parseGridItemPositionShorthand(CSSPropertyID, bool important);
162 bool parseGridTrackList(CSSPropertyID, bool important); 163 bool parseGridTrackList(CSSPropertyID, bool important);
163 PassRefPtr<CSSPrimitiveValue> parseGridTrackSize(); 164 PassRefPtr<CSSPrimitiveValue> parseGridTrackSize();
164 PassRefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*); 165 PassRefPtr<CSSPrimitiveValue> parseGridBreadth(CSSParserValue*);
165 166
166 bool parseClipShape(CSSPropertyID, bool important); 167 bool parseClipShape(CSSPropertyID, bool important);
167 168
168 bool parseBasicShape(CSSPropertyID, bool important); 169 bool parseBasicShape(CSSPropertyID, bool important);
169 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args) ; 170 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args) ;
170 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); 171 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args);
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 } 721 }
721 722
722 inline int cssyylex(void* yylval, CSSParser* parser) 723 inline int cssyylex(void* yylval, CSSParser* parser)
723 { 724 {
724 return parser->lex(yylval); 725 return parser->lex(yylval);
725 } 726 }
726 727
727 } // namespace WebCore 728 } // namespace WebCore
728 729
729 #endif // CSSParser_h 730 #endif // CSSParser_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698