aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/svggraphicselement.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/svggraphicselement.rs')
-rw-r--r--components/script/dom/svggraphicselement.rs43
1 files changed, 26 insertions, 17 deletions
diff --git a/components/script/dom/svggraphicselement.rs b/components/script/dom/svggraphicselement.rs
index f41768f9815..f3322f98888 100644
--- a/components/script/dom/svggraphicselement.rs
+++ b/components/script/dom/svggraphicselement.rs
@@ -1,14 +1,13 @@
/* 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::inheritance::Castable;
-use dom::bindings::str::DOMString;
-use dom::document::Document;
-use dom::svgelement::SVGElement;
-use dom::virtualmethods::VirtualMethods;
+use crate::dom::bindings::inheritance::Castable;
+use crate::dom::document::Document;
+use crate::dom::svgelement::SVGElement;
+use crate::dom::virtualmethods::VirtualMethods;
use dom_struct::dom_struct;
-use html5ever_atoms::LocalName;
+use html5ever::{LocalName, Prefix};
use style::element_state::ElementState;
#[dom_struct]
@@ -17,23 +16,33 @@ pub struct SVGGraphicsElement {
}
impl SVGGraphicsElement {
- pub fn new_inherited(tag_name: LocalName, prefix: Option<DOMString>,
- document: &Document) -> SVGGraphicsElement {
- SVGGraphicsElement::new_inherited_with_state(ElementState::empty(), tag_name, prefix, document)
+ pub fn new_inherited(
+ tag_name: LocalName,
+ prefix: Option<Prefix>,
+ document: &Document,
+ ) -> SVGGraphicsElement {
+ SVGGraphicsElement::new_inherited_with_state(
+ ElementState::empty(),
+ tag_name,
+ prefix,
+ document,
+ )
}
- pub fn new_inherited_with_state(state: ElementState, tag_name: LocalName,
- prefix: Option<DOMString>, document: &Document)
- -> SVGGraphicsElement {
+ pub fn new_inherited_with_state(
+ state: ElementState,
+ tag_name: LocalName,
+ prefix: Option<Prefix>,
+ document: &Document,
+ ) -> SVGGraphicsElement {
SVGGraphicsElement {
- svgelement:
- SVGElement::new_inherited_with_state(state, tag_name, prefix, document),
+ svgelement: SVGElement::new_inherited_with_state(state, tag_name, prefix, document),
}
}
}
impl VirtualMethods for SVGGraphicsElement {
- fn super_type(&self) -> Option<&VirtualMethods> {
- Some(self.upcast::<SVGElement>() as &VirtualMethods)
+ fn super_type(&self) -> Option<&dyn VirtualMethods> {
+ Some(self.upcast::<SVGElement>() as &dyn VirtualMethods)
}
}