diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-01 23:45:06 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-06 15:26:02 +0100 |
commit | 45f7199eee82c66637ec68287eafa40a651001c4 (patch) | |
tree | 8c0802f4ac7b89c2ce4d73063c8f65b9ee5face9 /components/script/lib.rs | |
parent | 86f148fb97601413c0d983f21b760d973ade7a75 (diff) | |
download | servo-45f7199eee82c66637ec68287eafa40a651001c4.tar.gz servo-45f7199eee82c66637ec68287eafa40a651001c4.zip |
`cargo fix --edition`
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 7f61031aab3..26ad0ed338e 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -150,21 +150,21 @@ mod webdriver_handlers; /// /// TODO(emilio): A few of the FooHelpers can go away, presumably... pub mod layout_exports { - pub use dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId}; - pub use dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; - pub use dom::bindings::root::LayoutDom; - pub use dom::characterdata::LayoutCharacterDataHelpers; - pub use dom::document::{Document, LayoutDocumentHelpers, PendingRestyle}; - pub use dom::element::{Element, LayoutElementHelpers, RawLayoutElementHelpers}; - pub use dom::node::NodeFlags; - pub use dom::node::{LayoutNodeHelpers, Node}; - pub use dom::text::Text; + pub use crate::dom::bindings::inheritance::{CharacterDataTypeId, ElementTypeId}; + pub use crate::dom::bindings::inheritance::{HTMLElementTypeId, NodeTypeId}; + pub use crate::dom::bindings::root::LayoutDom; + pub use crate::dom::characterdata::LayoutCharacterDataHelpers; + pub use crate::dom::document::{Document, LayoutDocumentHelpers, PendingRestyle}; + pub use crate::dom::element::{Element, LayoutElementHelpers, RawLayoutElementHelpers}; + pub use crate::dom::node::NodeFlags; + pub use crate::dom::node::{LayoutNodeHelpers, Node}; + pub use crate::dom::text::Text; } -use dom::bindings::codegen::RegisterBindings; -use dom::bindings::proxyhandler; +use crate::dom::bindings::codegen::RegisterBindings; +use crate::dom::bindings::proxyhandler; use script_traits::SWManagerSenders; -use serviceworker_manager::ServiceWorkerManager; +use crate::serviceworker_manager::ServiceWorkerManager; #[cfg(target_os = "linux")] #[allow(unsafe_code)] |