aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/style/mod.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2013-10-14 18:17:44 +0100
committerSimon Sapin <simon.sapin@exyr.org>2013-10-14 21:44:24 +0100
commitdc882b8ecfc698baa7da42d57cd6c39a639a72c0 (patch)
tree191c46455c77227bf994741aef0136abfbf20cfb /src/components/script/style/mod.rs
parentc0a5e8f6eb10148f8e56ba242140fc7565a563df (diff)
downloadservo-dc882b8ecfc698baa7da42d57cd6c39a639a72c0.tar.gz
servo-dc882b8ecfc698baa7da42d57cd6c39a639a72c0.zip
Move the content of 'script/style' into the new 'style' crate.
Diffstat (limited to 'src/components/script/style/mod.rs')
-rw-r--r--src/components/script/style/mod.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/components/script/style/mod.rs b/src/components/script/style/mod.rs
deleted file mode 100644
index d8d719fabdc..00000000000
--- a/src/components/script/style/mod.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-// The "real" public API
-pub use self::selector_matching::{Stylist, StylesheetOrigin};
-
-
-// Things that need to be public to make the compiler happy
-pub mod stylesheets;
-pub mod errors;
-pub mod selectors;
-pub mod selector_matching;
-pub mod properties;
-pub mod namespaces;
-pub mod media_queries;
-pub mod parsing_utils;
-
-#[cfg(test)]
-mod tests;