diff options
Diffstat (limited to 'src/components/script/style/mod.rs')
-rw-r--r-- | src/components/script/style/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/script/style/mod.rs b/src/components/script/style/mod.rs index f243ef0feb8..d8d719fabdc 100644 --- a/src/components/script/style/mod.rs +++ b/src/components/script/style/mod.rs @@ -2,10 +2,19 @@ * 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; |