mirror of
https://github.com/servo/servo.git
synced 2025-10-17 08:49:21 +01:00
style: Add resolution support to calc()
Differential Revision: https://phabricator.services.mozilla.com/D172338
This commit is contained in:
parent
76e8eeda72
commit
2c986f0005
6 changed files with 171 additions and 47 deletions
|
@ -770,7 +770,7 @@ impl specified::CalcLengthPercentage {
|
|||
result
|
||||
}
|
||||
}),
|
||||
Leaf::Number(..) | Leaf::Angle(..) | Leaf::Time(..) => {
|
||||
Leaf::Number(..) | Leaf::Angle(..) | Leaf::Time(..) | Leaf::Resolution(..) => {
|
||||
unreachable!("Shouldn't have parsed")
|
||||
},
|
||||
});
|
||||
|
|
|
@ -36,12 +36,12 @@ impl ToComputedValue for specified::Resolution {
|
|||
|
||||
#[inline]
|
||||
fn to_computed_value(&self, _: &Context) -> Self::ComputedValue {
|
||||
Resolution(self.to_dppx())
|
||||
Resolution(self.dppx())
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn from_computed_value(computed: &Self::ComputedValue) -> Self {
|
||||
specified::Resolution::Dppx(computed.dppx())
|
||||
specified::Resolution::from_dppx(computed.dppx())
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue