diff options
author | Josh Matthews <josh@joshmatthews.net> | 2013-08-28 17:53:36 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-28 17:53:36 -0400 |
commit | e26a541eb2bc772c68e2a2adae2d7622823831fd (patch) | |
tree | b9de0ca43547a24ffbf9657ba6c61e9b6a8cb301 /src/components/script/html | |
parent | 8693459b2885b435a231c1c1686786bba30d8a6a (diff) | |
download | servo-e26a541eb2bc772c68e2a2adae2d7622823831fd.tar.gz servo-e26a541eb2bc772c68e2a2adae2d7622823831fd.zip |
Generate bindings for HTMLParamElement.
Diffstat (limited to 'src/components/script/html')
-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 93df39cc3d6..61c2d7c5748 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -220,6 +220,7 @@ fn build_element_from_tag(cx: *JSContext, tag: &str) -> AbstractNode<ScriptView> handle_element!(cx, tag, "optgroup",HTMLOptGroupElementTypeId, HTMLOptGroupElement, []); handle_element!(cx, tag, "output", HTMLOutputElementTypeId, HTMLOutputElement, []); handle_element!(cx, tag, "p", HTMLParagraphElementTypeId, HTMLParagraphElement, []); + handle_element!(cx, tag, "param", HTMLParamElementTypeId, HTMLParamElement, []); handle_element!(cx, tag, "progress",HTMLProgressElementTypeId, HTMLProgressElement, []); handle_element!(cx, tag, "q", HTMLQuoteElementTypeId, HTMLQuoteElement, []); handle_element!(cx, tag, "script", HTMLScriptElementTypeId, HTMLScriptElement, []); |