Introduce HTMLOListElement::new.

This commit is contained in:
Ms2ger 2013-11-01 21:56:22 +01:00
parent 6c217c6872
commit 9fbc45ae9c
2 changed files with 18 additions and 1 deletions

View file

@ -2,13 +2,30 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * 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/. */ * 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::bindings::utils::{DOMString, ErrorResult};
use dom::document::AbstractDocument;
use dom::element::HTMLOListElementTypeId;
use dom::htmlelement::HTMLElement; use dom::htmlelement::HTMLElement;
use dom::node::{AbstractNode, Node, ScriptView};
pub struct HTMLOListElement { pub struct HTMLOListElement {
htmlelement: HTMLElement, 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<ScriptView> {
let element = HTMLOListElement::new_inherited(localName, document);
Node::reflect_node(@mut element, document, HTMLOListElementBinding::Wrap)
}
}
impl HTMLOListElement { impl HTMLOListElement {
pub fn Reversed(&self) -> bool { pub fn Reversed(&self) -> bool {
false false

View file

@ -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, "meter", HTMLMeterElementTypeId, HTMLMeterElement, []);
handle_element!(cx, document, tag, "mod", HTMLModElementTypeId, HTMLModElement, []); handle_element!(cx, document, tag, "mod", HTMLModElementTypeId, HTMLModElement, []);
handle_element!(cx, document, tag, "object", HTMLObjectElementTypeId, HTMLObjectElement, []); 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, "aside", HTMLElementTypeId, HTMLElement);
handle_htmlelement!(cx, document, tag, "b", 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, "h6", HTMLHeadingElement, Heading6);
handle_newable_element!(document, tag, "iframe", HTMLIFrameElement); handle_newable_element!(document, tag, "iframe", HTMLIFrameElement);
handle_newable_element!(document, tag, "img", HTMLImageElement); 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, "optgroup", HTMLOptGroupElement);
handle_newable_element!(document, tag, "option", HTMLOptionElement); handle_newable_element!(document, tag, "option", HTMLOptionElement);
handle_newable_element!(document, tag, "output", HTMLOutputElement); handle_newable_element!(document, tag, "output", HTMLOutputElement);