2025-08-03 13:58:13 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2025, Tim Ledbetter <tim.ledbetter@ladybird.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/FlyString.h>
|
|
|
|
#include <LibWeb/CSS/PercentageOr.h>
|
2025-08-08 10:11:51 +01:00
|
|
|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
|
2025-08-03 13:58:13 +01:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
// https://drafts.csswg.org/css-anchor-position-1/#funcdef-anchor-size
|
|
|
|
class AnchorStyleValue final : public StyleValueWithDefaultOperators<AnchorStyleValue> {
|
|
|
|
public:
|
|
|
|
static ValueComparingNonnullRefPtr<AnchorStyleValue const> create(Optional<FlyString> const& anchor_name,
|
2025-08-08 10:11:51 +01:00
|
|
|
ValueComparingNonnullRefPtr<StyleValue const> const& anchor_side,
|
|
|
|
ValueComparingRefPtr<StyleValue const> const& fallback_value);
|
2025-08-03 13:58:13 +01:00
|
|
|
virtual ~AnchorStyleValue() override = default;
|
|
|
|
|
|
|
|
virtual String to_string(SerializationMode) const override;
|
|
|
|
|
|
|
|
bool properties_equal(AnchorStyleValue const& other) const { return m_properties == other.m_properties; }
|
|
|
|
|
|
|
|
Optional<FlyString const&> anchor_name() const { return m_properties.anchor_name; }
|
2025-08-08 10:11:51 +01:00
|
|
|
ValueComparingNonnullRefPtr<StyleValue const> anchor_side() const
|
2025-08-03 13:58:13 +01:00
|
|
|
{
|
|
|
|
return m_properties.anchor_side;
|
|
|
|
}
|
2025-08-08 10:11:51 +01:00
|
|
|
ValueComparingRefPtr<StyleValue const> fallback_value() const
|
2025-08-03 13:58:13 +01:00
|
|
|
{
|
|
|
|
return m_properties.fallback_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2025-08-08 10:11:51 +01:00
|
|
|
AnchorStyleValue(Optional<FlyString> const& anchor_name, ValueComparingNonnullRefPtr<StyleValue const> const& anchor_side, ValueComparingRefPtr<StyleValue const> const& fallback_value);
|
2025-08-03 13:58:13 +01:00
|
|
|
|
|
|
|
struct Properties {
|
|
|
|
Optional<FlyString> anchor_name;
|
2025-08-08 10:11:51 +01:00
|
|
|
ValueComparingNonnullRefPtr<StyleValue const> anchor_side;
|
|
|
|
ValueComparingRefPtr<StyleValue const> fallback_value;
|
2025-08-03 13:58:13 +01:00
|
|
|
bool operator==(Properties const&) const = default;
|
|
|
|
} m_properties;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|