LibWeb: Make resolution calculable

No tests unfortunately, because no CSS property we currently support
accepts `<resolution>`.
This commit is contained in:
Sam Atkins 2023-12-30 17:05:23 +00:00 committed by Andreas Kling
commit 30dcbc306c
Notes: sideshowbarker 2024-07-17 18:08:55 +09:00
7 changed files with 67 additions and 2 deletions

View file

@ -14,6 +14,11 @@ Resolution::Resolution(double value, Type type)
{
}
Resolution Resolution::make_dots_per_pixel(double value)
{
return { value, Type::Dppx };
}
String Resolution::to_string() const
{
return MUST(String::formatted("{}dppx", to_dots_per_pixel()));