mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
It's a bit unfortunate the use separate implementations of SpecifiedUrl for Servo and Gecko, but they're different enough at this point that I don't think it really makes sense to try to share everything. Splitting them out has some nice simplifications as well. I recognize that there's still some potential correctness issues for Servo using the resolved URI in various places where the original URI may be the right thing, but I've got too much on my plate to look into that for now. MozReview-Commit-ID: BeDu93TQ4Ow
12 lines
386 B
Rust
12 lines
386 B
Rust
/* 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/. */
|
|
|
|
//! Servo-specific bits of the style system.
|
|
//!
|
|
//! These get compiled out on a Gecko build.
|
|
|
|
pub mod media_queries;
|
|
pub mod restyle_damage;
|
|
pub mod selector_parser;
|
|
pub mod url;
|