diff options
author | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
---|---|---|
committer | Hugo Thiessard <hugo.thiessard@etu.u-bordeaux.fr> | 2015-09-18 22:02:04 +0200 |
commit | 6565e7b02fafea933e27e59bed1db876b56ac005 (patch) | |
tree | 0b371fa5d7fd2674793843f4c3034a9ff81c25e9 /components/script/lib.rs | |
parent | e81e91207cb87ade4eeaa99917eaecd0f5ecd00d (diff) | |
download | servo-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.rs | 8 |
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; |