mirror of
https://github.com/servo/servo.git
synced 2025-07-22 06:43:40 +01:00
HTMLTableSectionElement improvements
'thead' and 'tfoot' now create instances of HTMLTableSectionElement HTMLTableSectionElement.rows has been implemented
This commit is contained in:
parent
e40dd3843f
commit
adbcb5345c
10 changed files with 109 additions and 43 deletions
|
@ -223,7 +223,11 @@ pub fn create_element(name: QualName, prefix: Option<Atom>,
|
|||
atom!("td") => make!(HTMLTableDataCellElement),
|
||||
atom!("template") => make!(HTMLTemplateElement),
|
||||
atom!("textarea") => make!(HTMLTextAreaElement),
|
||||
// https://html.spec.whatwg.org/multipage/#the-tfoot-element:concept-element-dom
|
||||
atom!("tfoot") => make!(HTMLTableSectionElement),
|
||||
atom!("th") => make!(HTMLTableHeaderCellElement),
|
||||
// https://html.spec.whatwg.org/multipage/#the-thead-element:concept-element-dom
|
||||
atom!("thead") => make!(HTMLTableSectionElement),
|
||||
atom!("time") => make!(HTMLTimeElement),
|
||||
atom!("title") => make!(HTMLTitleElement),
|
||||
atom!("tr") => make!(HTMLTableRowElement),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue