| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 176 |
| 177 bool parseClipShape(CSSPropertyID, bool important); | 177 bool parseClipShape(CSSPropertyID, bool important); |
| 178 | 178 |
| 179 PassRefPtr<CSSValue> parseShapeProperty(CSSPropertyID propId); | 179 PassRefPtr<CSSValue> parseShapeProperty(CSSPropertyID propId); |
| 180 PassRefPtr<CSSPrimitiveValue> parseBasicShape(); | 180 PassRefPtr<CSSPrimitiveValue> parseBasicShape(); |
| 181 PassRefPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); | 181 PassRefPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*); |
| 182 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args)
; | 182 PassRefPtr<CSSBasicShape> parseBasicShapeRectangle(CSSParserValueList* args)
; |
| 183 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); | 183 PassRefPtr<CSSBasicShape> parseBasicShapeCircle(CSSParserValueList* args); |
| 184 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeCircle(CSSParserValueList
* args); | 184 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeCircle(CSSParserValueList
* args); |
| 185 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args); | 185 PassRefPtr<CSSBasicShape> parseBasicShapeEllipse(CSSParserValueList* args); |
| 186 PassRefPtr<CSSBasicShape> parseDeprecatedBasicShapeEllipse(CSSParserValueLis
t*); |
| 186 PassRefPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueList* args); | 187 PassRefPtr<CSSBasicShape> parseBasicShapePolygon(CSSParserValueList* args); |
| 187 PassRefPtr<CSSBasicShape> parseBasicShapeInsetRectangle(CSSParserValueList*
args); | 188 PassRefPtr<CSSBasicShape> parseBasicShapeInsetRectangle(CSSParserValueList*
args); |
| 188 | 189 |
| 189 bool parseFont(bool important); | 190 bool parseFont(bool important); |
| 190 PassRefPtr<CSSValueList> parseFontFamily(); | 191 PassRefPtr<CSSValueList> parseFontFamily(); |
| 191 | 192 |
| 192 bool parseCounter(CSSPropertyID, int defaultValue, bool important); | 193 bool parseCounter(CSSPropertyID, int defaultValue, bool important); |
| 193 PassRefPtr<CSSValue> parseCounterContent(CSSParserValueList* args, bool coun
ters); | 194 PassRefPtr<CSSValue> parseCounterContent(CSSParserValueList* args, bool coun
ters); |
| 194 | 195 |
| 195 bool parseColorParameters(CSSParserValue*, int* colorValues, bool parseAlpha
); | 196 bool parseColorParameters(CSSParserValue*, int* colorValues, bool parseAlpha
); |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 bool isValidNthToken(const CSSParserString&); | 636 bool isValidNthToken(const CSSParserString&); |
| 636 | 637 |
| 637 inline int cssyylex(void* yylval, BisonCSSParser* parser) | 638 inline int cssyylex(void* yylval, BisonCSSParser* parser) |
| 638 { | 639 { |
| 639 return parser->m_tokenizer.lex(yylval); | 640 return parser->m_tokenizer.lex(yylval); |
| 640 } | 641 } |
| 641 | 642 |
| 642 } // namespace WebCore | 643 } // namespace WebCore |
| 643 | 644 |
| 644 #endif // CSSParser_h | 645 #endif // CSSParser_h |
| OLD | NEW |