diff options
author | Bruno de Oliveira Abinader <bruno.d@partner.samsung.com> | 2015-01-14 14:01:52 -0400 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno.d@partner.samsung.com> | 2015-01-19 13:21:03 -0400 |
commit | dc008977f96de90170a72be226af3e3eb54def13 (patch) | |
tree | e9cdbcee5b95a7057e45839985c2b4d88f1a3df5 /components/script/lib.rs | |
parent | d747a33df9c167a3defbbdcfe356ee25eeb672ad (diff) | |
download | servo-dc008977f96de90170a72be226af3e3eb54def13.tar.gz servo-dc008977f96de90170a72be226af3e3eb54def13.zip |
Share supported CSS properties between style and CSSStyleDeclaration
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; |