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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 virtual String item(unsigned index) const override; | 86 virtual String item(unsigned index) const override; |
87 const ComputedStyle* computeComputedStyle() const; | 87 const ComputedStyle* computeComputedStyle() const; |
88 virtual String getPropertyValue(const String& propertyName) override; | 88 virtual String getPropertyValue(const String& propertyName) override; |
89 virtual String getPropertyPriority(const String& propertyName) override; | 89 virtual String getPropertyPriority(const String& propertyName) override; |
90 virtual String getPropertyShorthand(const String& propertyName) override; | 90 virtual String getPropertyShorthand(const String& propertyName) override; |
91 virtual bool isPropertyImplicit(const String& propertyName) override; | 91 virtual bool isPropertyImplicit(const String& propertyName) override; |
92 virtual void setProperty(const String& propertyName, const String& value, co
nst String& priority, ExceptionState&) override; | 92 virtual void setProperty(const String& propertyName, const String& value, co
nst String& priority, ExceptionState&) override; |
93 virtual String removeProperty(const String& propertyName, ExceptionState&) o
verride; | 93 virtual String removeProperty(const String& propertyName, ExceptionState&) o
verride; |
94 virtual String cssText() const override; | 94 virtual String cssText() const override; |
95 virtual void setCSSText(const String&, ExceptionState&) override; | 95 virtual void setCSSText(const String&, ExceptionState&) override; |
| 96 virtual String cssFloat() const override; |
| 97 virtual void setCSSFloat(const String&, ExceptionState&) override; |
96 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValueInternal(CSSProp
ertyID) override; | 98 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValueInternal(CSSProp
ertyID) override; |
97 virtual String getPropertyValueInternal(CSSPropertyID) override; | 99 virtual String getPropertyValueInternal(CSSPropertyID) override; |
98 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; |
99 | 101 |
100 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const overri
de; | 102 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const overri
de; |
101 | 103 |
102 RefPtrWillBeMember<Node> m_node; | 104 RefPtrWillBeMember<Node> m_node; |
103 PseudoId m_pseudoElementSpecifier; | 105 PseudoId m_pseudoElementSpecifier; |
104 bool m_allowVisitedStyle; | 106 bool m_allowVisitedStyle; |
105 #if !ENABLE(OILPAN) | 107 #if !ENABLE(OILPAN) |
106 unsigned m_refCount; | 108 unsigned m_refCount; |
107 #endif | 109 #endif |
108 }; | 110 }; |
109 | 111 |
110 } // namespace blink | 112 } // namespace blink |
111 | 113 |
112 #endif // CSSComputedStyleDeclaration_h | 114 #endif // CSSComputedStyleDeclaration_h |
OLD | NEW |