| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const RenderStyle
&, bool useSpread) const; | 99 PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const RenderStyle
&, bool useSpread) const; |
| 100 PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const RenderStyle
&, bool useSpread) const; | 100 PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const RenderStyle
&, bool useSpread) const; |
| 101 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderStyle&, c
onst StyleColor&) const; | 101 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderStyle&, c
onst StyleColor&) const; |
| 102 | 102 |
| 103 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle&)
const; | 103 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle&)
const; |
| 104 | 104 |
| 105 PassRefPtr<CSSValueList> valuesForShorthandProperty(const StylePropertyShort
hand&) const; | 105 PassRefPtr<CSSValueList> valuesForShorthandProperty(const StylePropertyShort
hand&) const; |
| 106 PassRefPtr<CSSValueList> valuesForSidesShorthand(const StylePropertyShorthan
d&) const; | 106 PassRefPtr<CSSValueList> valuesForSidesShorthand(const StylePropertyShorthan
d&) const; |
| 107 PassRefPtr<CSSValueList> valuesForBackgroundShorthand() const; | 107 PassRefPtr<CSSValueList> valuesForBackgroundShorthand() const; |
| 108 PassRefPtr<CSSValueList> valuesForGridShorthand(const StylePropertyShorthand
&) const; | |
| 109 | 108 |
| 110 RefPtr<Node> m_node; | 109 RefPtr<Node> m_node; |
| 111 PseudoId m_pseudoElementSpecifier; | 110 PseudoId m_pseudoElementSpecifier; |
| 112 bool m_allowVisitedStyle; | 111 bool m_allowVisitedStyle; |
| 113 #if !ENABLE(OILPAN) | 112 #if !ENABLE(OILPAN) |
| 114 unsigned m_refCount; | 113 unsigned m_refCount; |
| 115 #endif | 114 #endif |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace blink | 117 } // namespace blink |
| 119 | 118 |
| 120 #endif // CSSComputedStyleDeclaration_h | 119 #endif // CSSComputedStyleDeclaration_h |
| OLD | NEW |