/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Tobias Christiansen * Copyright (c) 2021-2024, Sam Atkins * Copyright (c) 2022-2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::CSS { class WEB_API LengthStyleValue final : public DimensionStyleValue { public: static ValueComparingNonnullRefPtr create(Length const&); virtual ~LengthStyleValue() override = default; Length const& length() const { return m_length; } virtual double raw_value() const override { return m_length.raw_value(); } virtual FlyString unit_name() const override { return m_length.unit_name(); } virtual void serialize(StringBuilder& builder, SerializationMode mode) const override { m_length.serialize(builder, mode); } virtual ValueComparingNonnullRefPtr absolutized(ComputationContext const&) const override; virtual bool is_computationally_independent() const override { return !m_length.is_font_relative(); } bool equals(StyleValue const& other) const override; private: explicit LengthStyleValue(Length const& length) : DimensionStyleValue(Type::Length) , m_length(length) { } Length m_length; }; }