style: Fix mixed indentation in style_adjuster.rs

Differential Revision: https://phabricator.services.mozilla.com/D119579
This commit is contained in:
Emilio Cobos Álvarez 2023-05-22 10:04:21 +02:00 committed by Oriol Brufau
parent 1918c1c203
commit d7d407a9ae

View file

@ -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()) && 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_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 { if !is_legacy_marker {
return; return;
} }