mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 13:48:25 +00:00
LibWeb: Fix broken conversion of CSS <resolution> dpi/dpcm to dppx
Also add a basic test that documents how these media features currently get serialized, even if they're not identical to other browsers yet.
This commit is contained in:
@@ -23,9 +23,9 @@ double Resolution::to_dots_per_pixel() const
|
||||
{
|
||||
switch (m_type) {
|
||||
case Type::Dpi:
|
||||
return m_value * 96; // 1in = 2.54cm = 96px
|
||||
return m_value / 96; // 1in = 2.54cm = 96px
|
||||
case Type::Dpcm:
|
||||
return m_value * (96.0 / 2.54); // 1cm = 96px/2.54
|
||||
return m_value / (96.0 / 2.54); // 1cm = 96px/2.54
|
||||
case Type::Dppx:
|
||||
return m_value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user