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 12 matching lines...) Expand all Loading... |
23 #ifndef CSSPropertyParser_h | 23 #ifndef CSSPropertyParser_h |
24 #define CSSPropertyParser_h | 24 #define CSSPropertyParser_h |
25 | 25 |
26 // FIXME: Way too many. | 26 // FIXME: Way too many. |
27 #include "core/CSSPropertyNames.h" | 27 #include "core/CSSPropertyNames.h" |
28 #include "core/CSSValueKeywords.h" | 28 #include "core/CSSValueKeywords.h" |
29 #include "core/css/CSSCalculationValue.h" | 29 #include "core/css/CSSCalculationValue.h" |
30 #include "core/css/CSSFilterValue.h" | 30 #include "core/css/CSSFilterValue.h" |
31 #include "core/css/CSSGradientValue.h" | 31 #include "core/css/CSSGradientValue.h" |
32 #include "core/css/CSSGridTemplateAreasValue.h" | 32 #include "core/css/CSSGridTemplateAreasValue.h" |
33 #include "core/css/CSSParserMode.h" | |
34 #include "core/css/CSSParserValues.h" | |
35 #include "core/css/CSSProperty.h" | 33 #include "core/css/CSSProperty.h" |
36 #include "core/css/CSSPropertySourceData.h" | 34 #include "core/css/CSSPropertySourceData.h" |
37 #include "core/css/CSSSelector.h" | 35 #include "core/css/CSSSelector.h" |
| 36 #include "core/css/parser/CSSParserMode.h" |
| 37 #include "core/css/parser/CSSParserValues.h" |
38 #include "platform/graphics/Color.h" | 38 #include "platform/graphics/Color.h" |
39 #include "wtf/OwnPtr.h" | 39 #include "wtf/OwnPtr.h" |
40 #include "wtf/Vector.h" | 40 #include "wtf/Vector.h" |
41 | 41 |
42 namespace blink { | 42 namespace blink { |
43 | 43 |
44 class CSSBorderImageSliceValue; | 44 class CSSBorderImageSliceValue; |
45 class CSSPrimitiveValue; | 45 class CSSPrimitiveValue; |
46 class CSSValue; | 46 class CSSValue; |
47 class CSSValueList; | 47 class CSSValueList; |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 CSSPropertyID cssPropertyID(const CSSParserString&); | 393 CSSPropertyID cssPropertyID(const CSSParserString&); |
394 CSSPropertyID cssPropertyID(const String&); | 394 CSSPropertyID cssPropertyID(const String&); |
395 CSSValueID cssValueKeywordID(const CSSParserString&); | 395 CSSValueID cssValueKeywordID(const CSSParserString&); |
396 | 396 |
397 bool isKeywordPropertyID(CSSPropertyID); | 397 bool isKeywordPropertyID(CSSPropertyID); |
398 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo
ntext&); | 398 bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID, const CSSParserCo
ntext&); |
399 | 399 |
400 } // namespace blink | 400 } // namespace blink |
401 | 401 |
402 #endif // CSSPropertyParser_h | 402 #endif // CSSPropertyParser_h |
OLD | NEW |