mirror of
https://github.com/servo/servo
synced 2026-04-27 09:57:23 +02:00
Implement the table section IDL attributes for HTML tables
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user