OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> | 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Lesser General Public | 6 * modify it under the terms of the GNU Lesser General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 PassRefPtr<CSSValue> valueForShadow(const RenderObject*, const ShadowData*,
CSSPropertyID, const RenderStyle*) const; | 113 PassRefPtr<CSSValue> valueForShadow(const RenderObject*, const ShadowData*,
CSSPropertyID, const RenderStyle*) const; |
114 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle*, const S
tyleColor&) const; | 114 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle*, const S
tyleColor&) const; |
115 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderObject*,
const RenderStyle*, int colorProperty) const; | 115 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderObject*,
const RenderStyle*, int colorProperty) const; |
116 PassRefPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtr<SVGPaint>, Ren
derStyle*) const; | 116 PassRefPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtr<SVGPaint>, Ren
derStyle*) const; |
117 | 117 |
118 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle*)
const; | 118 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle*)
const; |
119 | 119 |
120 PassRefPtr<CSSValueList> getCSSPropertyValuesForShorthandProperties(const St
ylePropertyShorthand&) const; | 120 PassRefPtr<CSSValueList> getCSSPropertyValuesForShorthandProperties(const St
ylePropertyShorthand&) const; |
121 PassRefPtr<CSSValueList> getCSSPropertyValuesForSidesShorthand(const StylePr
opertyShorthand&) const; | 121 PassRefPtr<CSSValueList> getCSSPropertyValuesForSidesShorthand(const StylePr
opertyShorthand&) const; |
122 PassRefPtr<CSSValueList> getBackgroundShorthandValue() const; | 122 PassRefPtr<CSSValueList> getBackgroundShorthandValue() const; |
| 123 PassRefPtr<CSSValueList> getTextDecorationShorthandValue() const; |
123 PassRefPtr<CSSValueList> getCSSPropertyValuesForGridShorthand(const StylePro
pertyShorthand&) const; | 124 PassRefPtr<CSSValueList> getCSSPropertyValuesForGridShorthand(const StylePro
pertyShorthand&) const; |
124 | 125 |
125 RefPtr<Node> m_node; | 126 RefPtr<Node> m_node; |
126 PseudoId m_pseudoElementSpecifier; | 127 PseudoId m_pseudoElementSpecifier; |
127 bool m_allowVisitedStyle; | 128 bool m_allowVisitedStyle; |
128 unsigned m_refCount; | 129 unsigned m_refCount; |
129 }; | 130 }; |
130 | 131 |
131 } // namespace WebCore | 132 } // namespace WebCore |
132 | 133 |
133 #endif // CSSComputedStyleDeclaration_h | 134 #endif // CSSComputedStyleDeclaration_h |
OLD | NEW |