| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 bool translate() const; | 75 bool translate() const; |
| 76 void setTranslate(bool); | 76 void setTranslate(bool); |
| 77 | 77 |
| 78 const AtomicString& dir(); | 78 const AtomicString& dir(); |
| 79 void setDir(const AtomicString&); | 79 void setDir(const AtomicString&); |
| 80 | 80 |
| 81 void click(); | 81 void click(); |
| 82 | 82 |
| 83 void accessKeyAction(bool sendMouseEvents) override; | 83 void accessKeyAction(bool sendMouseEvents) override; |
| 84 | 84 |
| 85 bool ieForbidsInsertHTML() const; | 85 bool shouldSerializeEndTag() const; |
| 86 | 86 |
| 87 virtual HTMLFormElement* formOwner() const { return nullptr; } | 87 virtual HTMLFormElement* formOwner() const { return nullptr; } |
| 88 | 88 |
| 89 HTMLFormElement* findFormAncestor() const; | 89 HTMLFormElement* findFormAncestor() const; |
| 90 | 90 |
| 91 bool hasDirectionAuto() const; | 91 bool hasDirectionAuto() const; |
| 92 TextDirection directionalityIfhasDirAutoAttribute(bool& isAuto) const; | 92 TextDirection directionalityIfhasDirAutoAttribute(bool& isAuto) const; |
| 93 | 93 |
| 94 virtual bool isHTMLUnknownElement() const { return false; } | 94 virtual bool isHTMLUnknownElement() const { return false; } |
| 95 virtual bool isPluginElement() const { return false; } | 95 virtual bool isPluginElement() const { return false; } |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 inline bool isElementOfType<const thisType>(const HTMLElement& element) { \ | 235 inline bool isElementOfType<const thisType>(const HTMLElement& element) { \ |
| 236 return is##thisType(element); \ | 236 return is##thisType(element); \ |
| 237 } \ | 237 } \ |
| 238 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) | 238 DEFINE_ELEMENT_TYPE_CASTS_WITH_FUNCTION(thisType) |
| 239 | 239 |
| 240 } // namespace blink | 240 } // namespace blink |
| 241 | 241 |
| 242 #include "core/HTMLElementTypeHelpers.h" | 242 #include "core/HTMLElementTypeHelpers.h" |
| 243 | 243 |
| 244 #endif // HTMLElement_h | 244 #endif // HTMLElement_h |
| OLD | NEW |