diff options
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index 4baa68eeca5..81c34b4db5a 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -17,6 +17,7 @@ extern crate app_units; #[macro_use] extern crate bitflags; +extern crate core; #[macro_use] extern crate cssparser; extern crate encoding; @@ -43,9 +44,10 @@ extern crate util; pub mod animation; pub mod attr; mod custom_properties; +pub mod data; +pub mod dom; pub mod font_face; pub mod media_queries; -pub mod node; pub mod parser; pub mod restyle_hints; pub mod selector_matching; |