mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Remove stray changes
This commit is contained in:
parent
63d0429bed
commit
67db4fbc2e
2 changed files with 3 additions and 5 deletions
|
@ -993,7 +993,7 @@ impl InlineFlow {
|
|||
let percent_offset = line_height.scale_by(calc.percentage());
|
||||
offset_from_baseline = offset_from_baseline - percent_offset - calc.length()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
(offset_from_baseline - ascent, largest_size_updated)
|
||||
}
|
||||
|
|
|
@ -410,8 +410,7 @@ pub mod specified {
|
|||
}
|
||||
}
|
||||
|
||||
let sum = CalcSumNode { products: products };
|
||||
Ok(sum)
|
||||
Ok(CalcSumNode { products: products })
|
||||
}
|
||||
|
||||
fn parse_product(input: &mut Parser) -> Result<CalcProductNode, ()> {
|
||||
|
@ -442,8 +441,7 @@ pub mod specified {
|
|||
}
|
||||
}
|
||||
|
||||
let sum = CalcProductNode { values: values };
|
||||
Ok(sum)
|
||||
Ok(CalcProductNode { values: values })
|
||||
}
|
||||
|
||||
fn parse_value(input: &mut Parser) -> Result<CalcValueNode, ()> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue