aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlulistelement.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/htmlulistelement.rs')
-rw-r--r--components/script/dom/htmlulistelement.rs41
1 files changed, 24 insertions, 17 deletions
diff --git a/components/script/dom/htmlulistelement.rs b/components/script/dom/htmlulistelement.rs
index 4153709e108..aab11124365 100644
--- a/components/script/dom/htmlulistelement.rs
+++ b/components/script/dom/htmlulistelement.rs
@@ -1,34 +1,41 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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 https://mozilla.org/MPL/2.0/. */
-use dom::bindings::codegen::Bindings::HTMLUListElementBinding;
-use dom::bindings::js::Root;
-use dom::bindings::str::DOMString;
-use dom::document::Document;
-use dom::htmlelement::HTMLElement;
-use dom::node::Node;
+use crate::dom::bindings::root::DomRoot;
+use crate::dom::document::Document;
+use crate::dom::htmlelement::HTMLElement;
+use crate::dom::node::Node;
use dom_struct::dom_struct;
-use html5ever_atoms::LocalName;
+use html5ever::{LocalName, Prefix};
#[dom_struct]
pub struct HTMLUListElement {
- htmlelement: HTMLElement
+ htmlelement: HTMLElement,
}
impl HTMLUListElement {
- fn new_inherited(local_name: LocalName, prefix: Option<DOMString>, document: &Document) -> HTMLUListElement {
+ fn new_inherited(
+ local_name: LocalName,
+ prefix: Option<Prefix>,
+ document: &Document,
+ ) -> HTMLUListElement {
HTMLUListElement {
- htmlelement: HTMLElement::new_inherited(local_name, prefix, document)
+ htmlelement: HTMLElement::new_inherited(local_name, prefix, document),
}
}
#[allow(unrooted_must_root)]
- pub fn new(local_name: LocalName,
- prefix: Option<DOMString>,
- document: &Document) -> Root<HTMLUListElement> {
- Node::reflect_node(box HTMLUListElement::new_inherited(local_name, prefix, document),
- document,
- HTMLUListElementBinding::Wrap)
+ pub fn new(
+ local_name: LocalName,
+ prefix: Option<Prefix>,
+ document: &Document,
+ ) -> DomRoot<HTMLUListElement> {
+ Node::reflect_node(
+ Box::new(HTMLUListElement::new_inherited(
+ local_name, prefix, document,
+ )),
+ document,
+ )
}
}