aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index e80e9553956..52c0cd6f358 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -83,6 +83,8 @@ extern crate script_traits;
extern crate selectors;
extern crate serde;
#[macro_use] extern crate servo_atoms;
+#[macro_use] extern crate servo_config;
+extern crate servo_geometry;
extern crate servo_url;
extern crate smallvec;
#[macro_use]
@@ -93,7 +95,6 @@ extern crate time;
extern crate tinyfiledialogs;
extern crate url;
#[macro_use]
-extern crate util;
extern crate uuid;
extern crate webrender_traits;
extern crate websocket;
@@ -104,7 +105,7 @@ pub mod clipboard_provider;
mod devtools;
pub mod document_loader;
#[macro_use]
-pub mod dom;
+mod dom;
pub mod fetch;
pub mod layout_wrapper;
mod mem;
@@ -115,7 +116,9 @@ pub mod script_runtime;
pub mod script_thread;
mod serviceworker_manager;
mod serviceworkerjob;
+mod stylesheet_loader;
mod task_source;
+pub mod test;
pub mod textinput;
mod timers;
mod unpremultiplytable;