From 4770456952afba17bfc6fc349c42a01906c6087c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sun, 11 Jul 2021 20:44:01 +0000 Subject: [PATCH] No bug - Fix mixed indentation in style_adjuster.rs. DONTBUILD Differential Revision: https://phabricator.services.mozilla.com/D119579 --- servo/components/style/style_adjuster.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servo/components/style/style_adjuster.rs b/servo/components/style/style_adjuster.rs index 77d5cdf718b3..731494eebacc 100644 --- a/servo/components/style/style_adjuster.rs +++ b/servo/components/style/style_adjuster.rs @@ -835,7 +835,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; }