mirror of
https://github.com/servo/servo.git
synced 2025-10-10 13:30:20 +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
22 lines
551 B
Rust
22 lines
551 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/. */
|
|
|
|
//! Gecko-specific style-system bits.
|
|
|
|
#[macro_use]
|
|
mod non_ts_pseudo_class_list;
|
|
|
|
pub mod arc_types;
|
|
pub mod conversions;
|
|
pub mod data;
|
|
pub mod global_style_data;
|
|
pub mod media_queries;
|
|
pub mod restyle_damage;
|
|
pub mod selector_parser;
|
|
pub mod snapshot;
|
|
pub mod snapshot_helpers;
|
|
pub mod traversal;
|
|
pub mod url;
|
|
pub mod values;
|
|
pub mod wrapper;
|