| 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 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007 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 27 matching lines...) Expand all Loading... |
| 38 HTMLElement(const QualifiedName& tagName, Document*); | 38 HTMLElement(const QualifiedName& tagName, Document*); |
| 39 virtual ~HTMLElement(); | 39 virtual ~HTMLElement(); |
| 40 | 40 |
| 41 virtual bool isHTMLElement() const { return true; } | 41 virtual bool isHTMLElement() const { return true; } |
| 42 | 42 |
| 43 virtual String nodeName() const; | 43 virtual String nodeName() const; |
| 44 | 44 |
| 45 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry&
result) const; | 45 virtual bool mapToEntry(const QualifiedName& attrName, MappedAttributeEntry&
result) const; |
| 46 virtual void parseMappedAttribute(MappedAttribute*); | 46 virtual void parseMappedAttribute(MappedAttribute*); |
| 47 | 47 |
| 48 virtual PassRefPtr<Node> cloneNode(bool deep); | |
| 49 | |
| 50 PassRefPtr<HTMLCollection> children(); | 48 PassRefPtr<HTMLCollection> children(); |
| 51 | 49 |
| 52 String id() const; | 50 String id() const; |
| 53 void setId(const String&); | 51 void setId(const String&); |
| 54 virtual String title() const; | 52 virtual String title() const; |
| 55 void setTitle(const String&); | 53 void setTitle(const String&); |
| 56 String lang() const; | 54 String lang() const; |
| 57 void setLang(const String&); | 55 void setLang(const String&); |
| 58 String dir() const; | 56 String dir() const; |
| 59 void setDir(const String&); | 57 void setDir(const String&); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 void addHTMLAlignment(MappedAttribute*); | 106 void addHTMLAlignment(MappedAttribute*); |
| 109 | 107 |
| 110 private: | 108 private: |
| 111 virtual HTMLFormElement* virtualForm() const; | 109 virtual HTMLFormElement* virtualForm() const; |
| 112 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&); | 110 Node* insertAdjacent(const String& where, Node* newChild, ExceptionCode&); |
| 113 }; | 111 }; |
| 114 | 112 |
| 115 } // namespace WebCore | 113 } // namespace WebCore |
| 116 | 114 |
| 117 #endif // HTMLElement_h | 115 #endif // HTMLElement_h |
| OLD | NEW |