aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorJames Graham <james@hoppipolla.co.uk>2015-04-23 12:58:41 +0100
committerJames Graham <james@hoppipolla.co.uk>2015-04-23 16:14:27 +0100
commitc2fc6e311a0cb3ec4c702c77bb5d13f97bd19078 (patch)
tree2ff2f2b65614f94f34181813bd81bf38ca84ade4 /components/script/lib.rs
parent1b08211a5e9ec00eeaf241b916d51dc665289825 (diff)
downloadservo-c2fc6e311a0cb3ec4c702c77bb5d13f97bd19078.tar.gz
servo-c2fc6e311a0cb3ec4c702c77bb5d13f97bd19078.zip
Add script execution support via WebDriver
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index b9f4b42f84d..5c2e522f5d4 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -52,6 +52,7 @@ extern crate style;
extern crate url;
extern crate uuid;
extern crate string_cache;
+extern crate webdriver_traits;
pub mod cors;
@@ -67,3 +68,4 @@ pub mod script_task;
mod timers;
pub mod textinput;
mod devtools;
+mod webdriver_handlers;