2024-07-17 11:46:08 +01:00
|
|
|
/*
|
2025-06-18 10:28:56 +01:00
|
|
|
* Copyright (c) 2024-2025, Sam Atkins <sam@ladybird.org>
|
2024-07-17 11:46:08 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Checked.h>
|
|
|
|
#include <AK/FlyString.h>
|
|
|
|
#include <AK/Optional.h>
|
2025-06-17 16:33:23 +01:00
|
|
|
#include <LibWeb/DOM/AbstractElement.h>
|
2024-10-20 10:37:44 +02:00
|
|
|
#include <LibWeb/Forward.h>
|
2024-07-17 11:46:08 +01:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
// "UAs may have implementation-specific limits on the maximum or minimum value of a counter.
|
|
|
|
// If a counter reset, set, or increment would push the value outside of that range, the value
|
|
|
|
// must be clamped to that range." - https://drafts.csswg.org/css-lists-3/#auto-numbering
|
|
|
|
// So, we use a Checked<i32> and saturating addition/subtraction.
|
|
|
|
using CounterValue = Checked<i32>;
|
|
|
|
|
|
|
|
// https://drafts.csswg.org/css-lists-3/#counter
|
|
|
|
struct Counter {
|
|
|
|
FlyString name;
|
2025-06-17 16:33:23 +01:00
|
|
|
DOM::AbstractElement originating_element; // "creator"
|
2024-07-17 11:46:08 +01:00
|
|
|
bool reversed { false };
|
|
|
|
Optional<CounterValue> value;
|
|
|
|
};
|
|
|
|
|
|
|
|
// https://drafts.csswg.org/css-lists-3/#css-counters-set
|
|
|
|
class CountersSet {
|
|
|
|
public:
|
|
|
|
CountersSet() = default;
|
|
|
|
~CountersSet() = default;
|
|
|
|
|
2025-06-17 16:33:23 +01:00
|
|
|
Counter& instantiate_a_counter(FlyString name, DOM::AbstractElement const&, bool reversed, Optional<CounterValue>);
|
|
|
|
void set_a_counter(FlyString name, DOM::AbstractElement const&, CounterValue value);
|
|
|
|
void increment_a_counter(FlyString name, DOM::AbstractElement const&, CounterValue amount);
|
2024-07-17 11:46:08 +01:00
|
|
|
void append_copy(Counter const&);
|
|
|
|
|
|
|
|
Optional<Counter&> last_counter_with_name(FlyString const& name);
|
2025-06-17 16:33:23 +01:00
|
|
|
Optional<Counter&> counter_with_same_name_and_creator(FlyString const& name, DOM::AbstractElement const&);
|
2024-07-17 11:46:08 +01:00
|
|
|
|
|
|
|
Vector<Counter> const& counters() const { return m_counters; }
|
|
|
|
bool is_empty() const { return m_counters.is_empty(); }
|
|
|
|
|
2025-06-17 16:33:23 +01:00
|
|
|
void visit_edges(GC::Cell::Visitor&);
|
|
|
|
|
|
|
|
String dump() const;
|
|
|
|
|
2024-07-17 11:46:08 +01:00
|
|
|
private:
|
|
|
|
Vector<Counter> m_counters;
|
|
|
|
};
|
|
|
|
|
2025-06-18 10:28:56 +01:00
|
|
|
void resolve_counters(DOM::AbstractElement&);
|
|
|
|
void inherit_counters(DOM::AbstractElement&);
|
|
|
|
|
2024-07-17 11:46:08 +01:00
|
|
|
}
|