From 3da0e44d9865f2b07ecbe2318b9e26d7611ef78a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 12 Jun 2023 18:45:19 +0200 Subject: [PATCH] style: Fix rebase conflict with bug 1837664 --- components/style/values/specified/border.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/values/specified/border.rs b/components/style/values/specified/border.rs index f27d3aef61b..35722bb8482 100644 --- a/components/style/values/specified/border.rs +++ b/components/style/values/specified/border.rs @@ -380,7 +380,7 @@ where { let has_style = *style != BorderStyle::None; let has_color = *color != Color::CurrentColor; - let has_width = *width != BorderSideWidth::Medium; + let has_width = *width != BorderSideWidth::medium(); if !has_style && !has_color && !has_width { return width.to_css(dest) }