Move ComputedUrl into their impl mods.

This commit is contained in:
Xidorn Quan 2018-03-08 21:31:08 +11:00
parent d001fd9a0a
commit 0090fbb3c8
4 changed files with 57 additions and 58 deletions

View file

@ -117,9 +117,9 @@ pub mod ui;
/// Common handling for the specified value CSS url() values.
pub mod url {
#[cfg(feature = "servo")]
pub use ::servo::url::*;
pub use ::servo::url::{SpecifiedUrl, SpecifiedImageUrl};
#[cfg(feature = "gecko")]
pub use ::gecko::url::*;
pub use ::gecko::url::{SpecifiedUrl, SpecifiedImageUrl};
}
/// Parse a `<number>` value, with a given clamping mode.