diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-01-19 14:54:46 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-01-19 14:54:46 -0700 |
commit | 1e85bb67b24483d08edfdc868454fd86dee3ece8 (patch) | |
tree | a5af73ec476ff85c7f6c227d01eb67211118e8b7 /components/script/lib.rs | |
parent | 0a787ddb671afda148734c6e499bce29fc33a743 (diff) | |
parent | dc008977f96de90170a72be226af3e3eb54def13 (diff) | |
download | servo-1e85bb67b24483d08edfdc868454fd86dee3ece8.tar.gz servo-1e85bb67b24483d08edfdc868454fd86dee3ece8.zip |
auto merge of #4667 : brunoabinader/servo/share-css-properties-style-script, r=SimonSapin
Avoids duplicated code when implementing the CSS properties accessors in
CSSStyleDeclaration WebIDL. Servo internal CSS properties are not
accessible.
CSS property "float" is unnacessible because we currently lack support
for BinaryName IDL annotation (#4435).
Fixes #4429, #4430.
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 7593a3b68a3..a3c528df29c 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -35,6 +35,7 @@ extern crate script_traits; extern crate "plugins" as servo_plugins; extern crate "net" as servo_net; extern crate "util" as servo_util; +#[phase(plugin, link)] extern crate style; extern crate "msg" as servo_msg; extern crate url; |