Type Alias style::servo::url::ComputedImageUrl

source ·
pub type ComputedImageUrl = ComputedUrl;
Expand description

The computed value of a CSS url() for image.

Aliased Type§

enum ComputedImageUrl {
    Invalid(Arc<String>),
    Valid(Arc<Url>),
}

Variants§

§

Invalid(Arc<String>)

The url() was invalid or it wasn’t specified by the user.

§

Valid(Arc<Url>)

The resolved url() relative to the stylesheet URL.