| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 String getPropertyPriority(const String& propertyName) override; | 88 String getPropertyPriority(const String& propertyName) override; |
| 89 String getPropertyShorthand(const String& propertyName) override; | 89 String getPropertyShorthand(const String& propertyName) override; |
| 90 bool isPropertyImplicit(const String& propertyName) override; | 90 bool isPropertyImplicit(const String& propertyName) override; |
| 91 void setProperty(const String& propertyName, const String& value, const Stri
ng& priority, ExceptionState&) override; | 91 void setProperty(const String& propertyName, const String& value, const Stri
ng& priority, ExceptionState&) override; |
| 92 String removeProperty(const String& propertyName, ExceptionState&) override; | 92 String removeProperty(const String& propertyName, ExceptionState&) override; |
| 93 String cssFloat() const; | 93 String cssFloat() const; |
| 94 void setCSSFloat(const String&, ExceptionState&); | 94 void setCSSFloat(const String&, ExceptionState&); |
| 95 String cssText() const override; | 95 String cssText() const override; |
| 96 void setCSSText(const String&, ExceptionState&) override; | 96 void setCSSText(const String&, ExceptionState&) override; |
| 97 const CSSValue* getPropertyCSSValueInternal(CSSPropertyID) override; | 97 const CSSValue* getPropertyCSSValueInternal(CSSPropertyID) override; |
| 98 const CSSValue* getPropertyCSSValueInternal(AtomicString customPropertyName)
override; |
| 98 String getPropertyValueInternal(CSSPropertyID) override; | 99 String getPropertyValueInternal(CSSPropertyID) override; |
| 99 void setPropertyInternal(CSSPropertyID, const String& customPropertyName, co
nst String& value, bool important, ExceptionState&) override; | 100 void setPropertyInternal(CSSPropertyID, const String& customPropertyName, co
nst String& value, bool important, ExceptionState&) override; |
| 100 | 101 |
| 101 bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const override; | 102 bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const override; |
| 102 | 103 |
| 103 Member<Node> m_node; | 104 Member<Node> m_node; |
| 104 PseudoId m_pseudoElementSpecifier; | 105 PseudoId m_pseudoElementSpecifier; |
| 105 bool m_allowVisitedStyle; | 106 bool m_allowVisitedStyle; |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 } // namespace blink | 109 } // namespace blink |
| 109 | 110 |
| 110 #endif // CSSComputedStyleDeclaration_h | 111 #endif // CSSComputedStyleDeclaration_h |
| OLD | NEW |