aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2013-08-28 17:25:37 -0400
committerJosh Matthews <josh@joshmatthews.net>2013-08-28 17:25:37 -0400
commit4e3b948a3742be89d53985c3739c428eb0d990dd (patch)
tree48d80fe4a5ef4b85527529a240bf1c47c54e6ffc /src/components/script/html
parenta2739fd1962d1738216adb610f29a98a3ddb51f2 (diff)
downloadservo-4e3b948a3742be89d53985c3739c428eb0d990dd.tar.gz
servo-4e3b948a3742be89d53985c3739c428eb0d990dd.zip
Generate bindings for HTMLOptGroupElement.
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 c29d1942b01..36dc9e00902 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -217,6 +217,7 @@ fn build_element_from_tag(cx: *JSContext, tag: &str) -> AbstractNode<ScriptView>
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, "optgroup",HTMLOptGroupElementTypeId, HTMLOptGroupElement, []);
handle_element!(cx, tag, "p", HTMLParagraphElementTypeId, HTMLParagraphElement, []);
handle_element!(cx, tag, "progress",HTMLProgressElementTypeId, HTMLProgressElement, []);
handle_element!(cx, tag, "q", HTMLQuoteElementTypeId, HTMLQuoteElement, []);