| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 private: | 123 private: |
| 124 String debugNodeName() const final; | 124 String debugNodeName() const final; |
| 125 String nodeName() const final; | 125 String nodeName() const final; |
| 126 | 126 |
| 127 bool isHTMLElement() const = delete; // This will catch anyone doing an unne
cessary check. | 127 bool isHTMLElement() const = delete; // This will catch anyone doing an unne
cessary check. |
| 128 bool isStyledElement() const = delete; // This will catch anyone doing an un
necessary check. | 128 bool isStyledElement() const = delete; // This will catch anyone doing an un
necessary check. |
| 129 | 129 |
| 130 void mapLanguageAttributeToLocale(const AtomicString&, MutableStylePropertyS
et*); | 130 void mapLanguageAttributeToLocale(const AtomicString&, MutableStylePropertyS
et*); |
| 131 | 131 |
| 132 PassRefPtrWillBeRawPtr<DocumentFragment> textToFragment(const String&, Excep
tionState&); | 132 RawPtr<DocumentFragment> textToFragment(const String&, ExceptionState&); |
| 133 | 133 |
| 134 bool selfOrAncestorHasDirAutoAttribute() const; | 134 bool selfOrAncestorHasDirAutoAttribute() const; |
| 135 void dirAttributeChanged(const AtomicString&); | 135 void dirAttributeChanged(const AtomicString&); |
| 136 void adjustDirectionalityIfNeededAfterChildAttributeChanged(Element* child); | 136 void adjustDirectionalityIfNeededAfterChildAttributeChanged(Element* child); |
| 137 void adjustDirectionalityIfNeededAfterChildrenChanged(const ChildrenChange&)
; | 137 void adjustDirectionalityIfNeededAfterChildrenChanged(const ChildrenChange&)
; |
| 138 TextDirection directionality(Node** strongDirectionalityTextNode= 0) const; | 138 TextDirection directionality(Node** strongDirectionalityTextNode= 0) const; |
| 139 | 139 |
| 140 TranslateAttributeMode translateAttributeMode() const; | 140 TranslateAttributeMode translateAttributeMode() const; |
| 141 | 141 |
| 142 void handleKeypressEvent(KeyboardEvent*); | 142 void handleKeypressEvent(KeyboardEvent*); |
| (...skipping 37 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()); } \ | 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 RefPtr<T>& node) { retur
n is##thisType(node.get()); } \ | 181 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); } \ | 182 template <> inline bool isElementOfType<const thisType>(const HTMLElement& e
lement) { return is##thisType(element); } \ |
| 183 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) | 183 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) |
| 184 | 184 |
| 185 } // namespace blink | 185 } // namespace blink |
| 186 | 186 |
| 187 #include "core/HTMLElementTypeHelpers.h" | 187 #include "core/HTMLElementTypeHelpers.h" |
| 188 | 188 |
| 189 #endif // HTMLElement_h | 189 #endif // HTMLElement_h |
| OLD | NEW |