From 9fbc45ae9cd90aaf0bed45ad47188c887f7ceb0e Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 1 Nov 2013 21:56:22 +0100 Subject: [PATCH] Introduce HTMLOListElement::new. --- src/components/script/dom/htmlolistelement.rs | 17 +++++++++++++++++ .../script/html/hubbub_html_parser.rs | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/components/script/dom/htmlolistelement.rs b/src/components/script/dom/htmlolistelement.rs index 8aabcef7b18..157073e86c3 100644 --- a/src/components/script/dom/htmlolistelement.rs +++ b/src/components/script/dom/htmlolistelement.rs @@ -2,13 +2,30 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use dom::bindings::codegen::HTMLOListElementBinding; use dom::bindings::utils::{DOMString, ErrorResult}; +use dom::document::AbstractDocument; +use dom::element::HTMLOListElementTypeId; use dom::htmlelement::HTMLElement; +use dom::node::{AbstractNode, Node, ScriptView}; pub struct HTMLOListElement { htmlelement: HTMLElement, } +impl HTMLOListElement { + pub fn new_inherited(localName: ~str, document: AbstractDocument) -> HTMLOListElement { + HTMLOListElement { + htmlelement: HTMLElement::new(HTMLOListElementTypeId, localName, document) + } + } + + pub fn new(localName: ~str, document: AbstractDocument) -> AbstractNode { + let element = HTMLOListElement::new_inherited(localName, document); + Node::reflect_node(@mut element, document, HTMLOListElementBinding::Wrap) + } +} + impl HTMLOListElement { pub fn Reversed(&self) -> bool { false diff --git a/src/components/script/html/hubbub_html_parser.rs b/src/components/script/html/hubbub_html_parser.rs index 531a961b0cf..8ababab95d5 100644 --- a/src/components/script/html/hubbub_html_parser.rs +++ b/src/components/script/html/hubbub_html_parser.rs @@ -242,7 +242,6 @@ pub fn build_element_from_tag(cx: *JSContext, tag: &str, document: AbstractDocum handle_element!(cx, document, tag, "meter", HTMLMeterElementTypeId, HTMLMeterElement, []); handle_element!(cx, document, tag, "mod", HTMLModElementTypeId, HTMLModElement, []); handle_element!(cx, document, tag, "object", HTMLObjectElementTypeId, HTMLObjectElement, []); - handle_element!(cx, document, tag, "ol", HTMLOListElementTypeId, HTMLOListElement, []); handle_htmlelement!(cx, document, tag, "aside", HTMLElementTypeId, HTMLElement); handle_htmlelement!(cx, document, tag, "b", HTMLElementTypeId, HTMLElement); @@ -262,6 +261,7 @@ pub fn build_element_from_tag(cx: *JSContext, tag: &str, document: AbstractDocum handle_newable_element!(document, tag, "h6", HTMLHeadingElement, Heading6); handle_newable_element!(document, tag, "iframe", HTMLIFrameElement); handle_newable_element!(document, tag, "img", HTMLImageElement); + handle_newable_element!(document, tag, "ol", HTMLOListElement); handle_newable_element!(document, tag, "optgroup", HTMLOptGroupElement); handle_newable_element!(document, tag, "option", HTMLOptionElement); handle_newable_element!(document, tag, "output", HTMLOutputElement);