diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-28 13:46:00 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-01-28 13:46:00 +0530 |
commit | b68b7e87c8a4729ca1e8c22e88bdb6581c940cb7 (patch) | |
tree | bee923d2b407057833f835c379a39dfa3f7a79cc /components/script/script_task.rs | |
parent | e44ee70faff95763185a64544907a88466fa94a8 (diff) | |
download | servo-b68b7e87c8a4729ca1e8c22e88bdb6581c940cb7.tar.gz servo-b68b7e87c8a4729ca1e8c22e88bdb6581c940cb7.zip |
self import
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 3c1771a8b2d..e41d069094a 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -30,7 +30,7 @@ use dom::eventtarget::{EventTarget, EventTargetHelpers}; use dom::htmlelement::HTMLElementTypeId; use dom::keyboardevent::KeyboardEvent; use dom::mouseevent::MouseEvent; -use dom::node::{mod, Node, NodeHelpers, NodeDamage, NodeTypeId}; +use dom::node::{self, Node, NodeHelpers, NodeDamage, NodeTypeId}; use dom::window::{Window, WindowHelpers, ScriptHelpers}; use parse::html::{HTMLInput, parse_html}; use layout_interface::{ScriptLayoutChan, LayoutChan, ReflowGoal, ReflowQueryType}; @@ -81,7 +81,7 @@ use libc; use std::any::Any; use std::borrow::ToOwned; use std::cell::Cell; -use std::fmt::{mod, Show}; +use std::fmt::{self, Show}; use std::mem::replace; use std::num::ToPrimitive; use std::rc::Rc; |