diff options
Diffstat (limited to 'components/script/dom/activation.rs')
-rw-r--r-- | components/script/dom/activation.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/activation.rs b/components/script/dom/activation.rs index 4e6ac769885..0880d1fdb64 100644 --- a/components/script/dom/activation.rs +++ b/components/script/dom/activation.rs @@ -2,13 +2,14 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use script_layout_interface::message::ReflowGoal; + use crate::dom::element::Element; use crate::dom::event::Event; use crate::dom::eventtarget::EventTarget; use crate::dom::htmlinputelement::InputActivationState; use crate::dom::node::window_from_node; use crate::dom::window::ReflowReason; -use script_layout_interface::message::ReflowGoal; /// Trait for elements with defined activation behavior pub trait Activatable { |