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

@ -196,3 +196,8 @@ impl MallocSizeOf for SpecifiedImageUrl {
n
}
}
/// The computed value of a CSS `url()`.
pub type ComputedUrl = SpecifiedUrl;
/// The computed value of a CSS `url()` for image.
pub type ComputedImageUrl = SpecifiedImageUrl;