Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: Source/core/html/HTMLTableElement.h

Issue 14022022: FINALizing of the Node hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Action review comments. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLTableColElement.h ('k') | Source/core/html/HTMLTableRowElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/HTMLTableColElement.h ('k') | Source/core/html/HTMLTableRowElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698