mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Implement the table section IDL attributes for HTML tables
This commit is contained in:
parent
dfb482a2b7
commit
5e3dcae71f
9 changed files with 285 additions and 66 deletions
|
@ -8,13 +8,15 @@ interface HTMLTableElement : HTMLElement {
|
|||
attribute HTMLTableCaptionElement? caption;
|
||||
HTMLElement createCaption();
|
||||
void deleteCaption();
|
||||
// attribute HTMLTableSectionElement? tHead;
|
||||
//HTMLElement createTHead();
|
||||
//void deleteTHead();
|
||||
// attribute HTMLTableSectionElement? tFoot;
|
||||
//HTMLElement createTFoot();
|
||||
//void deleteTFoot();
|
||||
//readonly attribute HTMLCollection tBodies;
|
||||
[SetterThrows]
|
||||
attribute HTMLTableSectionElement? tHead;
|
||||
HTMLTableSectionElement createTHead();
|
||||
void deleteTHead();
|
||||
[SetterThrows]
|
||||
attribute HTMLTableSectionElement? tFoot;
|
||||
HTMLTableSectionElement createTFoot();
|
||||
void deleteTFoot();
|
||||
readonly attribute HTMLCollection tBodies;
|
||||
HTMLTableSectionElement createTBody();
|
||||
readonly attribute HTMLCollection rows;
|
||||
//HTMLElement insertRow(optional long index = -1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue