html_table.cpp
38 HTMLTableCaptionElement::HTMLTableCaptionElement(const HTMLTableCaptionElement &other) : HTMLElement(other)
42 HTMLTableCaptionElement::HTMLTableCaptionElement(HTMLTableCaptionElementImpl *impl) : HTMLElement(impl)
52 HTMLTableCaptionElement &HTMLTableCaptionElement::operator = (const HTMLTableCaptionElement &other)
79 HTMLTableCellElement::HTMLTableCellElement(const HTMLTableCellElement &other) : HTMLElement(other)
768 HTMLTableSectionElement::HTMLTableSectionElement(const HTMLTableSectionElement &other) : HTMLElement(other)
772 HTMLTableSectionElement::HTMLTableSectionElement(HTMLTableSectionElementImpl *impl) : HTMLElement(impl)
790 HTMLTableSectionElement &HTMLTableSectionElement::operator = (const HTMLTableSectionElement &other)
HTMLCollection rows() const
The collection of rows in this table section.
Definition: html_table.cpp:844
The object used to represent the TH and TD elements.
Definition: html_table.h:91
HTMLTableSectionElement tFoot() const
Returns the table's TFOOT , or null if none exists.
Definition: html_table.cpp:445
long sectionRowIndex() const
The index of this row, relative to the current section ( THEAD , TFOOT , or TBODY ).
Definition: html_table.cpp:666
DOMString rules() const
Specifies which internal table borders to render.
Definition: html_table.cpp:537
The Document Object Model (DOM) is divided into two parts, the COREDOM core DOM, specifying some core...
Definition: design.h:56
Table caption See the CAPTION element definition in HTML 4.0.
Definition: html_table.h:47
long span() const
Indicates the number of columns in a group or affected by a grouping.
Definition: html_table.cpp:352
The create* and delete* methods on the table allow authors to construct and modify tables.
Definition: html_table.h:441
DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impos...
Definition: dom_exception.h:57
long rowIndex() const
The index of this row, relative to the entire table.
Definition: html_table.cpp:655
DOMString vAlign() const
Vertical alignment of data within cells of this row.
Definition: html_table.cpp:732
HTMLElement insertCell(long index)
Insert an empty TD cell into this row.
Definition: html_table.cpp:743
DOMString frame() const
Specifies which external table borders to render.
Definition: html_table.cpp:526
HTMLElement createTHead()
Create a table header row or return an existing one.
Definition: html_table.cpp:570
HTMLCollection tBodies() const
Returns a collection of the table bodies (including implicit ones).
Definition: html_table.cpp:465
HTMLCollection rows() const
Returns a collection of all the rows in the table, including all in THEAD , TFOOT ,...
Definition: html_table.cpp:459
DOMString cellSpacing() const
Specifies the horizontal and vertical separation between cells.
Definition: html_table.cpp:515
DOMString align() const
Specifies the table's position with respect to the rest of the document.
Definition: html_table.cpp:471
DOMString headers() const
List of id attribute values for header cells.
Definition: html_table.cpp:201
HTMLTableCaptionElement caption() const
Returns the table's CAPTION , or void if none exists.
Definition: html_table.cpp:418
HTMLElement createTFoot()
Create a table footer row or return an existing one.
Definition: html_table.cpp:582
DOMString align() const
Horizontal alignment of data within cells of this row.
Definition: html_table.cpp:688
DOMString summary() const
Supplementary description about the purpose or structure of a table.
Definition: html_table.cpp:548
The Node interface is the primary datatype for the entire Document Object Model.
Definition: dom_node.h:274
HTMLElement createCaption()
Create a new table caption object or return an existing one.
Definition: html_table.cpp:594
DOMString cellPadding() const
Specifies the horizontal and vertical space between cell content and cell borders.
Definition: html_table.cpp:504
HTMLTableSectionElement tHead() const
Returns the table's THEAD , or null if none exists.
Definition: html_table.cpp:431