diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2013-10-14 18:17:44 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2013-10-14 21:44:24 +0100 |
commit | dc882b8ecfc698baa7da42d57cd6c39a639a72c0 (patch) | |
tree | 191c46455c77227bf994741aef0136abfbf20cfb /src/components/script/style/mod.rs | |
parent | c0a5e8f6eb10148f8e56ba242140fc7565a563df (diff) | |
download | servo-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.rs | 20 |
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; |