aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorHugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr>2015-09-18 22:02:04 +0200
committerHugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr>2015-09-18 22:02:04 +0200
commit6565e7b02fafea933e27e59bed1db876b56ac005 (patch)
tree0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/script/lib.rs
parente81e91207cb87ade4eeaa99917eaecd0f5ecd00d (diff)
downloadservo-6565e7b02fafea933e27e59bed1db876b56ac005.tar.gz
servo-6565e7b02fafea933e27e59bed1db876b56ac005.zip
Issue #7390 correct the order of mod declaration
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 325e9cba1e0..6f015063dde 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -91,16 +91,16 @@ pub mod dom;
pub mod parse;
+pub mod clipboard_provider;
+mod devtools;
+mod horribly_inefficient_timers;
pub mod layout_interface;
mod mem;
mod network_listener;
pub mod page;
pub mod script_task;
-mod timers;
pub mod textinput;
-pub mod clipboard_provider;
-mod devtools;
-mod horribly_inefficient_timers;
+mod timers;
mod webdriver_handlers;
use dom::bindings::codegen::RegisterBindings;