| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004-2007, 2009, 2014 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 protected: | 106 protected: |
| 107 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType); | 107 HTMLElement(const QualifiedName& tagName, Document&, ConstructionType); |
| 108 | 108 |
| 109 void addHTMLLengthToStyle(MutableStylePropertySet*, CSSPropertyID, const Str
ing& value); | 109 void addHTMLLengthToStyle(MutableStylePropertySet*, CSSPropertyID, const Str
ing& value); |
| 110 void addHTMLColorToStyle(MutableStylePropertySet*, CSSPropertyID, const Stri
ng& color); | 110 void addHTMLColorToStyle(MutableStylePropertySet*, CSSPropertyID, const Stri
ng& color); |
| 111 | 111 |
| 112 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropert
ySet*); | 112 void applyAlignmentAttributeToStyle(const AtomicString&, MutableStylePropert
ySet*); |
| 113 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySe
t*); | 113 void applyBorderAttributeToStyle(const AtomicString&, MutableStylePropertySe
t*); |
| 114 | 114 |
| 115 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; | 115 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; |
| 116 static bool parseColorWithLegacyRules(const String& attributeValue, Color& p
arsedColor); |
| 116 bool isPresentationAttribute(const QualifiedName&) const override; | 117 bool isPresentationAttribute(const QualifiedName&) const override; |
| 117 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; | 118 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; |
| 118 unsigned parseBorderWidthAttribute(const AtomicString&) const; | 119 unsigned parseBorderWidthAttribute(const AtomicString&) const; |
| 119 | 120 |
| 120 void childrenChanged(const ChildrenChange&) override; | 121 void childrenChanged(const ChildrenChange&) override; |
| 121 void calculateAndAdjustDirectionality(); | 122 void calculateAndAdjustDirectionality(); |
| 122 | 123 |
| 123 private: | 124 private: |
| 124 String debugNodeName() const final; | 125 String debugNodeName() const final; |
| 125 String nodeName() const final; | 126 String nodeName() const final; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r
eturn is##thisType(node.get()); } \ | 181 template<typename T> inline bool is##thisType(const PassRefPtr<T>& node) { r
eturn is##thisType(node.get()); } \ |
| 181 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur
n is##thisType(node.get()); } \ | 182 template<typename T> inline bool is##thisType(const RefPtr<T>& node) { retur
n is##thisType(node.get()); } \ |
| 182 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e
lement) { return is##thisType(element); } \ | 183 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e
lement) { return is##thisType(element); } \ |
| 183 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) | 184 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) |
| 184 | 185 |
| 185 } // namespace blink | 186 } // namespace blink |
| 186 | 187 |
| 187 #include "core/HTMLElementTypeHelpers.h" | 188 #include "core/HTMLElementTypeHelpers.h" |
| 188 | 189 |
| 189 #endif // HTMLElement_h | 190 #endif // HTMLElement_h |
| OLD | NEW |