| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
| 4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
| 5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 const StylePropertySet* additionalCellStyle(); | 71 const StylePropertySet* additionalCellStyle(); |
| 72 const StylePropertySet* additionalGroupStyle(bool rows); | 72 const StylePropertySet* additionalGroupStyle(bool rows); |
| 73 | 73 |
| 74 DECLARE_VIRTUAL_TRACE(); | 74 DECLARE_VIRTUAL_TRACE(); |
| 75 | 75 |
| 76 private: | 76 private: |
| 77 explicit HTMLTableElement(Document&); | 77 explicit HTMLTableElement(Document&); |
| 78 ~HTMLTableElement(); | 78 ~HTMLTableElement(); |
| 79 | 79 |
| 80 void parseAttribute(const QualifiedName&, | 80 void parseAttribute(const AttributeModificationParams&) override; |
| 81 const AtomicString&, | |
| 82 const AtomicString&) override; | |
| 83 bool isPresentationAttribute(const QualifiedName&) const override; | 81 bool isPresentationAttribute(const QualifiedName&) const override; |
| 84 void collectStyleForPresentationAttribute(const QualifiedName&, | 82 void collectStyleForPresentationAttribute(const QualifiedName&, |
| 85 const AtomicString&, | 83 const AtomicString&, |
| 86 MutableStylePropertySet*) override; | 84 MutableStylePropertySet*) override; |
| 87 bool isURLAttribute(const Attribute&) const override; | 85 bool isURLAttribute(const Attribute&) const override; |
| 88 bool hasLegalLinkAttribute(const QualifiedName&) const override; | 86 bool hasLegalLinkAttribute(const QualifiedName&) const override; |
| 89 const QualifiedName& subResourceAttributeName() const override; | 87 const QualifiedName& subResourceAttributeName() const override; |
| 90 | 88 |
| 91 // Used to obtain either a solid or outset border decl and to deal with the | 89 // Used to obtain either a solid or outset border decl and to deal with the |
| 92 // frame and rules attributes. | 90 // frame and rules attributes. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 // otherwise). | 128 // otherwise). |
| 131 TableRules m_rulesAttr; | 129 TableRules m_rulesAttr; |
| 132 | 130 |
| 133 unsigned short m_padding; | 131 unsigned short m_padding; |
| 134 Member<StylePropertySet> m_sharedCellStyle; | 132 Member<StylePropertySet> m_sharedCellStyle; |
| 135 }; | 133 }; |
| 136 | 134 |
| 137 } // namespace blink | 135 } // namespace blink |
| 138 | 136 |
| 139 #endif // HTMLTableElement_h | 137 #endif // HTMLTableElement_h |
| OLD | NEW |