diff options
author | Tetsuharu OHZEKI <saneyuki.s.snyk@gmail.com> | 2013-08-24 01:48:11 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.s.snyk@gmail.com> | 2013-08-31 20:00:25 +0900 |
commit | 22e02b573d546f9e0eea3318e2691d3144735fc5 (patch) | |
tree | d7e0e186d0675e441b385634e5191e7ed3be39ed /src/components/script/html/hubbub_html_parser.rs | |
parent | c532c739644be0285d14540acd679f7bf18db10b (diff) | |
download | servo-22e02b573d546f9e0eea3318e2691d3144735fc5.tar.gz servo-22e02b573d546f9e0eea3318e2691d3144735fc5.zip |
Generate bindings for HTMLTemplateElement.
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r-- | src/components/script/html/hubbub_html_parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs index 081c6a1ba25..9af6dadf58e 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -234,6 +234,7 @@ fn build_element_from_tag(cx: *JSContext, tag: &str) -> AbstractNode<ScriptView> handle_element!(cx, tag, "col", HTMLTableColElementTypeId, HTMLTableColElement, []); handle_element!(cx, tag, "colgroup",HTMLTableColElementTypeId, HTMLTableColElement, []); handle_element!(cx, tag, "tbody", HTMLTableSectionElementTypeId, HTMLTableSectionElement, []); + handle_element!(cx, tag, "template",HTMLTemplateElementTypeId, HTMLTemplateElement, []); handle_element!(cx, tag, "textarea",HTMLTextAreaElementTypeId, HTMLTextAreaElement, []); handle_element!(cx, tag, "time", HTMLTimeElementTypeId, HTMLTimeElement, []); handle_element!(cx, tag, "title", HTMLTitleElementTypeId, HTMLTitleElement, []); |