OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |