mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Generate bindings for HTMLTableCaptionElement
This commit is contained in:
parent
1c087ab507
commit
c0935cba72
10 changed files with 65 additions and 5 deletions
|
@ -10,7 +10,8 @@ use dom::bindings::codegen::{HTMLAnchorElementBinding, HTMLBodyElementBinding, H
|
|||
HTMLHtmlElementBinding, HTMLIFrameElementBinding,
|
||||
HTMLImageElementBinding, HTMLMetaElementBinding,
|
||||
HTMLOListElementBinding, HTMLParagraphElementBinding,
|
||||
HTMLScriptElementBinding, HTMLSpanElementBinding, HTMLStyleElementBinding,
|
||||
HTMLScriptElementBinding, HTMLSpanElementBinding,
|
||||
HTMLStyleElementBinding, HTMLTableCaptionElementBinding,
|
||||
HTMLTableElementBinding, HTMLTableRowElementBinding,
|
||||
HTMLTableSectionElementBinding, HTMLTextAreaElementBinding,
|
||||
HTMLTitleElementBinding, HTMLUListElementBinding};
|
||||
|
@ -32,6 +33,7 @@ use dom::htmlmetaelement::HTMLMetaElement;
|
|||
use dom::htmlolistelement::HTMLOListElement;
|
||||
use dom::htmlscriptelement::HTMLScriptElement;
|
||||
use dom::htmlstyleelement::HTMLStyleElement;
|
||||
use dom::htmltablecaptionelement::HTMLTableCaptionElement;
|
||||
use dom::htmltableelement::HTMLTableElement;
|
||||
use dom::htmltablerowelement::HTMLTableRowElement;
|
||||
use dom::htmlulistelement::HTMLUListElement;
|
||||
|
@ -102,10 +104,11 @@ pub enum ElementTypeId {
|
|||
HTMLSmallElementTypeId,
|
||||
HTMLSpanElementTypeId,
|
||||
HTMLStyleElementTypeId,
|
||||
HTMLTableSectionElementTypeId,
|
||||
HTMLTableCaptionElementTypeId,
|
||||
HTMLTableCellElementTypeId,
|
||||
HTMLTableElementTypeId,
|
||||
HTMLTableRowElementTypeId,
|
||||
HTMLTableSectionElementTypeId,
|
||||
HTMLTextAreaElementTypeId,
|
||||
HTMLTitleElementTypeId,
|
||||
HTMLUListElementTypeId,
|
||||
|
@ -219,6 +222,8 @@ generate_binding_object!(HTMLSpanElement)
|
|||
generate_cacheable_wrapper!(HTMLStyleElement, HTMLStyleElementBinding::Wrap)
|
||||
generate_binding_object!(HTMLStyleElement)
|
||||
generate_cacheable_wrapper!(HTMLTableElement, HTMLTableElementBinding::Wrap)
|
||||
generate_binding_object!(HTMLTableCaptionElement)
|
||||
generate_cacheable_wrapper!(HTMLTableCaptionElement, HTMLTableCaptionElementBinding::Wrap)
|
||||
generate_binding_object!(HTMLTableElement)
|
||||
generate_cacheable_wrapper!(HTMLTableRowElement, HTMLTableRowElementBinding::Wrap)
|
||||
generate_binding_object!(HTMLTableRowElement)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue