| 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 30 matching lines...) Expand all Loading... |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class CSSBorderImageSliceValue; | 43 class CSSBorderImageSliceValue; |
| 44 class CSSPrimitiveValue; | 44 class CSSPrimitiveValue; |
| 45 class CSSValue; | 45 class CSSValue; |
| 46 class CSSValueList; | 46 class CSSValueList; |
| 47 class CSSBasicShape; | 47 class CSSBasicShape; |
| 48 class CSSBasicShapeInset; | 48 class CSSBasicShapeInset; |
| 49 class ImmutableStylePropertySet; | 49 class ImmutableStylePropertySet; |
| 50 class StylePropertyShorthand; | 50 class StylePropertyShorthand; |
| 51 class UseCounter; | |
| 52 | 51 |
| 53 // Inputs: PropertyID, CSSParserValueList. | 52 // Inputs: PropertyID, CSSParserValueList. |
| 54 // Outputs: Vector of CSSProperties | 53 // Outputs: Vector of CSSProperties |
| 55 | 54 |
| 56 class CSSPropertyParser { | 55 class CSSPropertyParser { |
| 57 STACK_ALLOCATED(); | 56 STACK_ALLOCATED(); |
| 58 public: | 57 public: |
| 59 static bool parseValue(CSSPropertyID, | 58 static bool parseValue(CSSPropertyID, |
| 60 CSSParserValueList*, const CSSParserContext&, bool inViewport, | 59 CSSParserValueList*, const CSSParserContext&, bool inViewport, |
| 61 Vector<CSSProperty, 256>&, CSSRuleSourceData::Type); | 60 Vector<CSSProperty, 256>&, CSSRuleSourceData::Type); |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 CSSPropertyID cssPropertyID(const CSSParserString&); | 343 CSSPropertyID cssPropertyID(const CSSParserString&); |
| 345 CSSPropertyID cssPropertyID(const String&); | 344 CSSPropertyID cssPropertyID(const String&); |
| 346 CSSValueID cssValueKeywordID(const CSSParserString&); | 345 CSSValueID cssValueKeywordID(const CSSParserString&); |
| 347 | 346 |
| 348 bool isKeywordPropertyID(CSSPropertyID); | 347 bool isKeywordPropertyID(CSSPropertyID); |
| 349 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo
ntext&); | 348 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo
ntext&); |
| 350 | 349 |
| 351 } // namespace blink | 350 } // namespace blink |
| 352 | 351 |
| 353 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPROPERTYPARSER_H_ | 352 #endif // SKY_ENGINE_CORE_CSS_PARSER_CSSPROPERTYPARSER_H_ |
| OLD | NEW |