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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 virtual String cssText() const OVERRIDE; | 96 virtual String cssText() const OVERRIDE; |
97 virtual void setCSSText(const String&, ExceptionState&) OVERRIDE; | 97 virtual void setCSSText(const String&, ExceptionState&) OVERRIDE; |
98 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVER
RIDE; | 98 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVER
RIDE; |
99 virtual String getPropertyValueInternal(CSSPropertyID) OVERRIDE; | 99 virtual String getPropertyValueInternal(CSSPropertyID) OVERRIDE; |
100 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im
portant, ExceptionState&) OVERRIDE; | 100 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im
portant, ExceptionState&) OVERRIDE; |
101 | 101 |
102 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRI
DE; | 102 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRI
DE; |
103 | 103 |
104 PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const RenderStyle
&, bool useSpread) const; | 104 PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const RenderStyle
&, bool useSpread) const; |
105 PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const RenderStyle
&, bool useSpread) const; | 105 PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const RenderStyle
&, bool useSpread) const; |
106 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderStyle&, c
onst StyleColor&) const; | 106 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(const Ren
derStyle&, const StyleColor&) const; |
107 PassRefPtrWillBeRawPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtrWil
lBeRawPtr<SVGPaint>, RenderStyle&) const; | 107 PassRefPtrWillBeRawPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtrWil
lBeRawPtr<SVGPaint>, RenderStyle&) const; |
108 | 108 |
109 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle&)
const; | 109 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle&)
const; |
110 | 110 |
111 PassRefPtrWillBeRawPtr<CSSValueList> valuesForShorthandProperty(const StyleP
ropertyShorthand&) const; | 111 PassRefPtrWillBeRawPtr<CSSValueList> valuesForShorthandProperty(const StyleP
ropertyShorthand&) const; |
112 PassRefPtrWillBeRawPtr<CSSValueList> valuesForSidesShorthand(const StyleProp
ertyShorthand&) const; | 112 PassRefPtrWillBeRawPtr<CSSValueList> valuesForSidesShorthand(const StyleProp
ertyShorthand&) const; |
113 PassRefPtrWillBeRawPtr<CSSValueList> valuesForBackgroundShorthand() const; | 113 PassRefPtrWillBeRawPtr<CSSValueList> valuesForBackgroundShorthand() const; |
114 PassRefPtrWillBeRawPtr<CSSValueList> valuesForGridShorthand(const StylePrope
rtyShorthand&) const; | 114 PassRefPtrWillBeRawPtr<CSSValueList> valuesForGridShorthand(const StylePrope
rtyShorthand&) const; |
115 | 115 |
116 RefPtr<Node> m_node; | 116 RefPtr<Node> m_node; |
117 PseudoId m_pseudoElementSpecifier; | 117 PseudoId m_pseudoElementSpecifier; |
118 bool m_allowVisitedStyle; | 118 bool m_allowVisitedStyle; |
119 unsigned m_refCount; | 119 unsigned m_refCount; |
120 }; | 120 }; |
121 | 121 |
122 } // namespace WebCore | 122 } // namespace WebCore |
123 | 123 |
124 #endif // CSSComputedStyleDeclaration_h | 124 #endif // CSSComputedStyleDeclaration_h |
OLD | NEW |