aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2013-08-28 09:22:08 -0400
committerJosh Matthews <josh@joshmatthews.net>2013-08-28 09:22:08 -0400
commita2739fd1962d1738216adb610f29a98a3ddb51f2 (patch)
treefa193347126b9f6153998774ebd402a87d357e11 /src/components/script/html
parent4c928102911dd9aae2cc7230cc3614d0509c4905 (diff)
downloadservo-a2739fd1962d1738216adb610f29a98a3ddb51f2.tar.gz
servo-a2739fd1962d1738216adb610f29a98a3ddb51f2.zip
Generate bindings for HTMLObjectElement.
Diffstat (limited to 'src/components/script/html')
-rw-r--r--src/components/script/html/hubbub_html_parser.rs1
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 157173b2720..c29d1942b01 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -214,6 +214,7 @@ fn build_element_from_tag(cx: *JSContext, tag: &str) -> AbstractNode<ScriptView>
handle_element!(cx, tag, "meta", HTMLMetaElementTypeId, HTMLMetaElement, []);
handle_element!(cx, tag, "meter", HTMLMeterElementTypeId, HTMLMeterElement, []);
handle_element!(cx, tag, "mod", HTMLModElementTypeId, HTMLModElement, []);
+ handle_element!(cx, tag, "object", HTMLObjectElementTypeId, HTMLObjectElement, []);
handle_element!(cx, tag, "ol", HTMLOListElementTypeId, HTMLOListElement, []);
handle_element!(cx, tag, "option", HTMLOptionElementTypeId, HTMLOptionElement, []);
handle_element!(cx, tag, "p", HTMLParagraphElementTypeId, HTMLParagraphElement, []);