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, 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2009 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 TextDirection directionality(Node** strongDirectionalityTextNode= 0) const; | 129 TextDirection directionality(Node** strongDirectionalityTextNode= 0) const; |
130 | 130 |
131 TranslateAttributeMode translateAttributeMode() const; | 131 TranslateAttributeMode translateAttributeMode() const; |
132 | 132 |
133 AtomicString eventNameForAttributeName(const QualifiedName& attrName) const; | 133 AtomicString eventNameForAttributeName(const QualifiedName& attrName) const; |
134 | 134 |
135 void handleKeypressEvent(KeyboardEvent*); | 135 void handleKeypressEvent(KeyboardEvent*); |
136 bool supportsSpatialNavigationFocus() const; | 136 bool supportsSpatialNavigationFocus() const; |
137 }; | 137 }; |
138 | 138 |
139 inline HTMLElement* toHTMLElement(Node* node) | 139 DEFINE_NODE_TYPE_CASTS(HTMLElement, isHTMLElement()); |
140 { | |
141 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isHTMLElement()); | |
142 return static_cast<HTMLElement*>(node); | |
143 } | |
144 | |
145 inline const HTMLElement* toHTMLElement(const Node* node) | |
146 { | |
147 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isHTMLElement()); | |
148 return static_cast<const HTMLElement*>(node); | |
149 } | |
150 | |
151 // This will catch anyone doing an unnecessary cast. | |
152 void toHTMLElement(const HTMLElement*); | |
153 | 140 |
154 inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document& document
, ConstructionType type = CreateHTMLElement) | 141 inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document& document
, ConstructionType type = CreateHTMLElement) |
155 : Element(tagName, &document, type) | 142 : Element(tagName, &document, type) |
156 { | 143 { |
157 ASSERT(tagName.localName().impl()); | 144 ASSERT(tagName.localName().impl()); |
158 ScriptWrappable::init(this); | 145 ScriptWrappable::init(this); |
159 } | 146 } |
160 | 147 |
161 } // namespace WebCore | 148 } // namespace WebCore |
162 | 149 |
163 #endif // HTMLElement_h | 150 #endif // HTMLElement_h |
OLD | NEW |