mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 15:19:16 +00:00
As noted, the spec tells us to do something different than what is expected by WPT, so we slightly ignore it.
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2022-2025, Sam Atkins <sam@ladybird.org>
|
|
* Copyright (c) 2024, Glenn Skrzypczak <glenn.skrzypczak@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/CSS/Resolution.h>
|
|
#include <LibWeb/CSS/Serialize.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
Resolution::Resolution(double value, Type type)
|
|
: m_type(type)
|
|
, m_value(value)
|
|
{
|
|
}
|
|
|
|
Resolution Resolution::make_dots_per_pixel(double value)
|
|
{
|
|
return { value, Type::Dppx };
|
|
}
|
|
|
|
String Resolution::to_string(SerializationMode serialization_mode) const
|
|
{
|
|
// https://drafts.csswg.org/cssom/#serialize-a-css-value
|
|
// -> <resolution>
|
|
// The resolution in dots per CSS pixel serialized as per <number> followed by the literal string "dppx".
|
|
// AD-HOC: WPT expects us to serialize using the actual unit, like for other dimensions.
|
|
// https://github.com/w3c/csswg-drafts/issues/12616
|
|
if (serialization_mode == SerializationMode::ResolvedValue) {
|
|
StringBuilder builder;
|
|
serialize_a_number(builder, to_dots_per_pixel());
|
|
builder.append("dppx"sv);
|
|
return builder.to_string_without_validation();
|
|
}
|
|
StringBuilder builder;
|
|
serialize_a_number(builder, raw_value());
|
|
builder.append(unit_name());
|
|
return builder.to_string_without_validation();
|
|
}
|
|
|
|
double Resolution::to_dots_per_pixel() const
|
|
{
|
|
switch (m_type) {
|
|
case Type::Dpi:
|
|
return m_value / 96; // 1in = 2.54cm = 96px
|
|
case Type::Dpcm:
|
|
return m_value / (96.0 / 2.54); // 1cm = 96px/2.54
|
|
case Type::Dppx:
|
|
case Type::X:
|
|
return m_value;
|
|
}
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
StringView Resolution::unit_name() const
|
|
{
|
|
switch (m_type) {
|
|
case Type::Dpi:
|
|
return "dpi"sv;
|
|
case Type::Dpcm:
|
|
return "dpcm"sv;
|
|
case Type::Dppx:
|
|
return "dppx"sv;
|
|
case Type::X:
|
|
return "x"sv;
|
|
}
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
Optional<Resolution::Type> Resolution::unit_from_name(StringView name)
|
|
{
|
|
if (name.equals_ignoring_ascii_case("dpi"sv))
|
|
return Type::Dpi;
|
|
if (name.equals_ignoring_ascii_case("dpcm"sv))
|
|
return Type::Dpcm;
|
|
if (name.equals_ignoring_ascii_case("dppx"sv))
|
|
return Type::Dppx;
|
|
if (name.equals_ignoring_ascii_case("x"sv))
|
|
return Type::X;
|
|
return {};
|
|
}
|
|
|
|
}
|