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 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "HTMLElement.h" | 29 #include "HTMLElement.h" |
30 | 30 |
31 namespace WebCore { | 31 namespace WebCore { |
32 | 32 |
33 class HTMLCollection; | 33 class HTMLCollection; |
34 class HTMLTableCaptionElement; | 34 class HTMLTableCaptionElement; |
35 class HTMLTableRowsCollection; | 35 class HTMLTableRowsCollection; |
36 class HTMLTableSectionElement; | 36 class HTMLTableSectionElement; |
37 | 37 |
38 class HTMLTableElement : public HTMLElement { | 38 class HTMLTableElement FINAL : public HTMLElement { |
39 public: | 39 public: |
40 static PassRefPtr<HTMLTableElement> create(Document*); | 40 static PassRefPtr<HTMLTableElement> create(Document*); |
41 static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*); | 41 static PassRefPtr<HTMLTableElement> create(const QualifiedName&, Document*); |
42 | 42 |
43 HTMLTableCaptionElement* caption() const; | 43 HTMLTableCaptionElement* caption() const; |
44 void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionCode&); | 44 void setCaption(PassRefPtr<HTMLTableCaptionElement>, ExceptionCode&); |
45 | 45 |
46 HTMLTableSectionElement* tHead() const; | 46 HTMLTableSectionElement* tHead() const; |
47 void setTHead(PassRefPtr<HTMLTableSectionElement>, ExceptionCode&); | 47 void setTHead(PassRefPtr<HTMLTableSectionElement>, ExceptionCode&); |
48 | 48 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 TableRules m_rulesAttr; // Implies a thin border width, a collapsing bor
der model, and all borders on the table becoming set to hidden (if frame/border | 96 TableRules m_rulesAttr; // Implies a thin border width, a collapsing bor
der model, and all borders on the table becoming set to hidden (if frame/border |
97 // are present, to none otherwise). | 97 // are present, to none otherwise). |
98 | 98 |
99 unsigned short m_padding; | 99 unsigned short m_padding; |
100 RefPtr<StylePropertySet> m_sharedCellStyle; | 100 RefPtr<StylePropertySet> m_sharedCellStyle; |
101 }; | 101 }; |
102 | 102 |
103 } //namespace | 103 } //namespace |
104 | 104 |
105 #endif | 105 #endif |
OLD | NEW |