mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Fix servo build and rustfmt recent changes.
We need to introduce another Cursor enum that is specific to embedder_traits and that layout converts to to avoid dependency hell.
This commit is contained in:
parent
05881b5ab4
commit
90c0ec0cf7
19 changed files with 243 additions and 111 deletions
|
@ -26,13 +26,10 @@ impl Animate for LengthPercentage {
|
|||
let length = self
|
||||
.unclamped_length()
|
||||
.animate(&other.unclamped_length(), procedure)?;
|
||||
let percentage = animate_percentage_half(
|
||||
self.specified_percentage(),
|
||||
other.specified_percentage(),
|
||||
)?;
|
||||
let is_calc = self.was_calc ||
|
||||
other.was_calc ||
|
||||
self.has_percentage != other.has_percentage;
|
||||
let percentage =
|
||||
animate_percentage_half(self.specified_percentage(), other.specified_percentage())?;
|
||||
let is_calc =
|
||||
self.was_calc || other.was_calc || self.has_percentage != other.has_percentage;
|
||||
Ok(Self::with_clamping_mode(
|
||||
length,
|
||||
percentage,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue