aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/html/hubbub_html_parser.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2013-08-26 16:36:24 -0400
committerJosh Matthews <josh@joshmatthews.net>2013-08-26 16:36:24 -0400
commite71b3e67a458136a439ec9ef82bac94cfecb5411 (patch)
tree298af16c02b24543609090a9b4302e813f9b504e /src/components/script/html/hubbub_html_parser.rs
parente552cfd4ce4e71095ca6302589b04d673c81dea4 (diff)
downloadservo-e71b3e67a458136a439ec9ef82bac94cfecb5411.tar.gz
servo-e71b3e67a458136a439ec9ef82bac94cfecb5411.zip
Generate bindings for HTMLFrameSetElement.
Diffstat (limited to 'src/components/script/html/hubbub_html_parser.rs')
-rw-r--r--src/components/script/html/hubbub_html_parser.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs
index 0a9b052b44e..f41f64c8aca 100644
--- a/src/components/script/html/hubbub_html_parser.rs
+++ b/src/components/script/html/hubbub_html_parser.rs
@@ -9,7 +9,8 @@ use dom::element::{HTMLElementTypeId,
HTMLDataElementTypeId, HTMLDataListElementTypeId, HTMLDivElementTypeId,
HTMLDirectoryElementTypeId, HTMLDListElementTypeId, HTMLEmbedElementTypeId,
HTMLFieldSetElementTypeId, HTMLFontElementTypeId, HTMLFormElementTypeId,
- HTMLFrameElementTypeId, HTMLHRElementTypeId, HTMLHeadElementTypeId,
+ HTMLFrameElementTypeId, HTMLFrameSetElementTypeId, HTMLHRElementTypeId,
+ HTMLHeadElementTypeId,
HTMLHtmlElementTypeId, HTMLImageElementTypeId, HTMLIframeElementTypeId,
HTMLInputElementTypeId, HTMLLinkElementTypeId, HTMLLIElementTypeId,
HTMLMetaElementTypeId, HTMLOListElementTypeId, HTMLOptionElementTypeId,
@@ -45,6 +46,7 @@ use dom::htmlembedelement::HTMLEmbedElement;
use dom::htmlfieldsetelement::HTMLFieldSetElement;
use dom::htmlfontelement::HTMLFontElement;
use dom::htmlframeelement::HTMLFrameElement;
+use dom::htmlframesetelement::HTMLFrameSetElement;
use dom::htmlhrelement::HTMLHRElement;
use dom::htmliframeelement::{IFrameSize, HTMLIFrameElement};
use dom::htmlimageelement::HTMLImageElement;
@@ -265,7 +267,8 @@ fn build_element_from_tag(cx: *JSContext, tag: &str) -> AbstractNode<ScriptView>
handle_element!(cx, tag, "fieldset",HTMLFieldSetElementTypeId, HTMLFieldSetElement, []);
handle_element!(cx, tag, "font", HTMLFontElementTypeId, HTMLFontElement, []);
handle_element!(cx, tag, "form", HTMLFormElementTypeId, HTMLFormElement, []);
- handle_element!(cx, tag, "frame", HTMLFrameElementTypeId, HTMLFrameElement, []);
+ handle_element!(cx, tag, "frame", HTMLFrameElementTypeId, HTMLFrameElement, []);
+ handle_element!(cx, tag, "frameset",HTMLFrameSetElementTypeId, HTMLFrameSetElement, []);
handle_element!(cx, tag, "hr", HTMLHRElementTypeId, HTMLHRElement, []);
handle_element!(cx, tag, "head", HTMLHeadElementTypeId, HTMLHeadElement, []);
handle_element!(cx, tag, "html", HTMLHtmlElementTypeId, HTMLHtmlElement, []);