aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/script.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-05-12 16:46:10 -0400
committerbors-servo <release+servo@mozilla.com>2014-05-12 16:46:10 -0400
commitfbcfe78bf675ffb1fdbe549da3b96a0d1a5f0be8 (patch)
tree22fb9be44c4aba89d403079c3642a026f50c48b2 /src/components/script/script.rs
parent8d7883ff1c5f197640ddbe7e3fc5cb2e2216b8f2 (diff)
parent0e67202bc27c276f4e38fae2c1ce2568813bdc81 (diff)
downloadservo-fbcfe78bf675ffb1fdbe549da3b96a0d1a5f0be8.tar.gz
servo-fbcfe78bf675ffb1fdbe549da3b96a0d1a5f0be8.zip
auto merge of #2388 : zwarich/servo/cssom, r=jdm
Implementing the CSSOM requires giving the script task access to the computed style for a node. Moving it into a new SharedLayoutData struct member of LayoutDataRef seems to be the best way to achieve this. This is the first step towards #1721.
Diffstat (limited to 'src/components/script/script.rs')
-rw-r--r--src/components/script/script.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/script/script.rs b/src/components/script/script.rs
index 4f90bf8ebd5..841bf7f8449 100644
--- a/src/components/script/script.rs
+++ b/src/components/script/script.rs
@@ -31,6 +31,7 @@ extern crate servo_macros = "macros";
extern crate servo_net = "net";
extern crate servo_util = "util";
extern crate style;
+extern crate sync;
extern crate servo_msg = "msg";
extern crate url;