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

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

Issue 1486843002: Sync the HTMLTableElement return types with the spec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 HTMLTableCaptionElement* caption() const; 45 HTMLTableCaptionElement* caption() const;
46 void setCaption(PassRefPtrWillBeRawPtr<HTMLTableCaptionElement>, ExceptionSt ate&); 46 void setCaption(PassRefPtrWillBeRawPtr<HTMLTableCaptionElement>, ExceptionSt ate&);
47 47
48 HTMLTableSectionElement* tHead() const; 48 HTMLTableSectionElement* tHead() const;
49 void setTHead(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionStat e&); 49 void setTHead(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionStat e&);
50 50
51 HTMLTableSectionElement* tFoot() const; 51 HTMLTableSectionElement* tFoot() const;
52 void setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionStat e&); 52 void setTFoot(PassRefPtrWillBeRawPtr<HTMLTableSectionElement>, ExceptionStat e&);
53 53
54 PassRefPtrWillBeRawPtr<HTMLElement> createTHead(); 54 PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTHead();
55 void deleteTHead(); 55 void deleteTHead();
56 PassRefPtrWillBeRawPtr<HTMLElement> createTFoot(); 56 PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTFoot();
57 void deleteTFoot(); 57 void deleteTFoot();
58 PassRefPtrWillBeRawPtr<HTMLElement> createTBody(); 58 PassRefPtrWillBeRawPtr<HTMLTableSectionElement> createTBody();
59 PassRefPtrWillBeRawPtr<HTMLElement> createCaption(); 59 PassRefPtrWillBeRawPtr<HTMLTableCaptionElement> createCaption();
60 void deleteCaption(); 60 void deleteCaption();
61 PassRefPtrWillBeRawPtr<HTMLElement> insertRow(int index, ExceptionState&); 61 PassRefPtrWillBeRawPtr<HTMLTableRowElement> insertRow(int index, ExceptionSt ate&);
62 void deleteRow(int index, ExceptionState&); 62 void deleteRow(int index, ExceptionState&);
63 63
64 PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> rows(); 64 PassRefPtrWillBeRawPtr<HTMLTableRowsCollection> rows();
65 PassRefPtrWillBeRawPtr<HTMLCollection> tBodies(); 65 PassRefPtrWillBeRawPtr<HTMLCollection> tBodies();
66 66
67 const AtomicString& rules() const; 67 const AtomicString& rules() const;
68 const AtomicString& summary() const; 68 const AtomicString& summary() const;
69 69
70 const StylePropertySet* additionalCellStyle(); 70 const StylePropertySet* additionalCellStyle();
71 const StylePropertySet* additionalGroupStyle(bool rows); 71 const StylePropertySet* additionalGroupStyle(bool rows);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 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 103 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
104 // are present, to none otherwise). 104 // are present, to none otherwise).
105 105
106 unsigned short m_padding; 106 unsigned short m_padding;
107 RefPtrWillBeMember<StylePropertySet> m_sharedCellStyle; 107 RefPtrWillBeMember<StylePropertySet> m_sharedCellStyle;
108 }; 108 };
109 109
110 } // namespace blink 110 } // namespace blink
111 111
112 #endif // HTMLTableElement_h 112 #endif // HTMLTableElement_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLTableElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698