style/servo/
mod.rs

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//! Servo-specific bits of the style system.
6//!
7//! These get compiled out on a Gecko build.
8
9pub mod animation;
10#[allow(missing_docs)] // TODO.
11pub mod attr;
12mod encoding_support;
13pub mod media_queries;
14pub mod restyle_damage;
15pub mod selector_parser;
16mod shadow_parts;
17pub mod url;