| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 bool parseBorderImageWidth(RefPtr<CSSPrimitiveValue>&); | 170 bool parseBorderImageWidth(RefPtr<CSSPrimitiveValue>&); |
| 171 bool parseBorderImageOutset(RefPtr<CSSPrimitiveValue>&); | 171 bool parseBorderImageOutset(RefPtr<CSSPrimitiveValue>&); |
| 172 bool parseBorderRadius(CSSPropertyID); | 172 bool parseBorderRadius(CSSPropertyID); |
| 173 | 173 |
| 174 PassRefPtr<CSSValue> parseAspectRatio(); | 174 PassRefPtr<CSSValue> parseAspectRatio(); |
| 175 | 175 |
| 176 bool parseFlex(CSSParserValueList* args); | 176 bool parseFlex(CSSParserValueList* args); |
| 177 | 177 |
| 178 PassRefPtr<CSSValue> parseObjectPosition(); | 178 PassRefPtr<CSSValue> parseObjectPosition(); |
| 179 | 179 |
| 180 // Image generators | |
| 181 bool parseCanvas(CSSParserValueList*, RefPtr<CSSValue>&); | |
| 182 | |
| 183 bool parseLinearGradient(CSSParserValueList*, RefPtr<CSSValue>&, CSSGradient
Repeat repeating); | 180 bool parseLinearGradient(CSSParserValueList*, RefPtr<CSSValue>&, CSSGradient
Repeat repeating); |
| 184 bool parseRadialGradient(CSSParserValueList*, RefPtr<CSSValue>&, CSSGradient
Repeat repeating); | 181 bool parseRadialGradient(CSSParserValueList*, RefPtr<CSSValue>&, CSSGradient
Repeat repeating); |
| 185 bool parseGradientColorStops(CSSParserValueList*, CSSGradientValue*, bool ex
pectComma); | 182 bool parseGradientColorStops(CSSParserValueList*, CSSGradientValue*, bool ex
pectComma); |
| 186 | 183 |
| 187 bool parseCrossfade(CSSParserValueList*, RefPtr<CSSValue>&); | 184 bool parseCrossfade(CSSParserValueList*, RefPtr<CSSValue>&); |
| 188 | 185 |
| 189 PassRefPtr<CSSValue> parseImageSet(CSSParserValueList*); | 186 PassRefPtr<CSSValue> parseImageSet(CSSParserValueList*); |
| 190 | 187 |
| 191 PassRefPtr<CSSValue> parseWillChange(); | 188 PassRefPtr<CSSValue> parseWillChange(); |
| 192 | 189 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 CSSPropertyID cssPropertyID(const CSSParserString&); | 340 CSSPropertyID cssPropertyID(const CSSParserString&); |
| 344 CSSPropertyID cssPropertyID(const String&); | 341 CSSPropertyID cssPropertyID(const String&); |
| 345 CSSValueID cssValueKeywordID(const CSSParserString&); | 342 CSSValueID cssValueKeywordID(const CSSParserString&); |
| 346 | 343 |
| 347 bool isKeywordPropertyID(CSSPropertyID); | 344 bool isKeywordPropertyID(CSSPropertyID); |
| 348 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo
ntext&); | 345 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo
ntext&); |
| 349 | 346 |
| 350 } // namespace blink | 347 } // namespace blink |
| 351 | 348 |
| 352 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPROPERTYPARSER_H_ | 349 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPROPERTYPARSER_H_ |
| OLD | NEW |