mod.rs (579B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ 4 5 //! [Media queries][mq]. 6 //! 7 //! [mq]: https://drafts.csswg.org/mediaqueries/ 8 9 mod media_list; 10 mod media_query; 11 12 pub use self::media_list::MediaList; 13 pub use self::media_query::{MediaQuery, MediaQueryType, MediaType, Qualifier}; 14 15 #[cfg(feature = "gecko")] 16 pub use crate::gecko::media_queries::Device; 17 #[cfg(feature = "servo")] 18 pub use crate::servo::media_queries::Device;