diff options
Diffstat (limited to 'components/layout_2020')
-rw-r--r-- | components/layout_2020/display_list/conversions.rs | 2 | ||||
-rw-r--r-- | components/layout_2020/display_list/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/layout_2020/display_list/conversions.rs b/components/layout_2020/display_list/conversions.rs index 3159fc820a2..a0434422f9d 100644 --- a/components/layout_2020/display_list/conversions.rs +++ b/components/layout_2020/display_list/conversions.rs @@ -37,7 +37,7 @@ impl FilterToWebRender for ComputedFilter { ComputedFilter::DropShadow(ref shadow) => FilterOp::DropShadow(Shadow { blur_radius: shadow.blur.px(), offset: units::LayoutVector2D::new(shadow.horizontal.px(), shadow.vertical.px()), - color: super::rgba(shadow.color.clone().resolve_into_absolute(current_color)), + color: super::rgba(shadow.color.clone().resolve_to_absolute(current_color)), }), // Statically check that Url is impossible. ComputedFilter::Url(ref url) => match *url {}, diff --git a/components/layout_2020/display_list/mod.rs b/components/layout_2020/display_list/mod.rs index db8e5fcf401..57bc6100cd8 100644 --- a/components/layout_2020/display_list/mod.rs +++ b/components/layout_2020/display_list/mod.rs @@ -368,7 +368,7 @@ impl Fragment { let text_decoration_color = fragment .parent_style .clone_text_decoration_color() - .resolve_into_absolute(color); + .resolve_to_absolute(color); let text_decoration_style = fragment.parent_style.clone_text_decoration_style(); if text_decoration_style == ComputedTextDecorationStyle::MozNone { return; |