diff --git a/components/style/properties/declaration_block.rs b/components/style/properties/declaration_block.rs index 5ce80955a48..1ce083c944f 100644 --- a/components/style/properties/declaration_block.rs +++ b/components/style/properties/declaration_block.rs @@ -1382,7 +1382,7 @@ fn report_css_errors( selectors: Option<&SelectorList>, errors: &mut SmallParseErrorVec, ) { - for (mut error, slice, property) in errors.drain() { + for (error, slice, property) in errors.drain() { report_one_css_error(context, Some(block), selectors, error, slice, property) } }