aboutsummaryrefslogtreecommitdiffstats
path: root/ports/geckolib/stylesheet_loader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ports/geckolib/stylesheet_loader.rs')
-rw-r--r--ports/geckolib/stylesheet_loader.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/geckolib/stylesheet_loader.rs b/ports/geckolib/stylesheet_loader.rs
index e40fb2c05b9..0addb4f9ef8 100644
--- a/ports/geckolib/stylesheet_loader.rs
+++ b/ports/geckolib/stylesheet_loader.rs
@@ -13,7 +13,7 @@ use style::parser::ParserContext;
use style::shared_lock::{Locked, SharedRwLock};
use style::stylesheets::{ImportRule, StylesheetLoader as StyleStylesheetLoader};
use style::stylesheets::import_rule::ImportSheet;
-use style::values::specified::url::SpecifiedUrl;
+use style::values::CssUrl;
pub struct StylesheetLoader(*mut Loader, *mut ServoStyleSheet, *mut SheetLoadData, *mut LoaderReusableStyleSheets);
@@ -29,7 +29,7 @@ impl StylesheetLoader {
impl StyleStylesheetLoader for StylesheetLoader {
fn request_stylesheet(
&self,
- url: SpecifiedUrl,
+ url: CssUrl,
source_location: SourceLocation,
_context: &ParserContext,
lock: &SharedRwLock,