/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Tobias Christiansen * Copyright (c) 2021-2023, Sam Atkins * Copyright (c) 2022-2023, MacDue * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::CSS { class OverflowStyleValue final : public StyleValueWithDefaultOperators { public: static ValueComparingNonnullRefPtr create(ValueComparingNonnullRefPtr overflow_x, ValueComparingNonnullRefPtr overflow_y) { return adopt_ref(*new (nothrow) OverflowStyleValue(move(overflow_x), move(overflow_y))); } virtual ~OverflowStyleValue() override = default; ValueComparingNonnullRefPtr overflow_x() const { return m_properties.overflow_x; } ValueComparingNonnullRefPtr overflow_y() const { return m_properties.overflow_y; } virtual ErrorOr to_string() const override; bool properties_equal(OverflowStyleValue const& other) const { return m_properties == other.m_properties; } private: OverflowStyleValue(ValueComparingNonnullRefPtr overflow_x, ValueComparingNonnullRefPtr overflow_y) : StyleValueWithDefaultOperators(Type::Overflow) , m_properties { .overflow_x = move(overflow_x), .overflow_y = move(overflow_y) } { } struct Properties { ValueComparingNonnullRefPtr overflow_x; ValueComparingNonnullRefPtr overflow_y; bool operator==(Properties const&) const = default; } m_properties; }; }