From d7d407a9ae253e8014f824dc6d07e4e168b351de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 22 May 2023 10:04:21 +0200 Subject: [PATCH] style: Fix mixed indentation in style_adjuster.rs Differential Revision: https://phabricator.services.mozilla.com/D119579 --- components/style/style_adjuster.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/style_adjuster.rs b/components/style/style_adjuster.rs index a0f1980d31c..e9c82f60d0e 100644 --- a/components/style/style_adjuster.rs +++ b/components/style/style_adjuster.rs @@ -836,7 +836,7 @@ impl<'a, 'b: 'a> StyleAdjuster<'a, 'b> { let is_legacy_marker = self.style.pseudo.map_or(false, |p| p.is_marker()) && self.style.get_list().clone_list_style_type().is_bullet() && - self.style.get_counters().clone_content() == Content::Normal; + self.style.get_counters().clone_content() == Content::Normal; if !is_legacy_marker { return; }