mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 02:10:26 +00:00
Port all callers of Checked<T>::saturating_add/sub/mul to the new standalone functions in AK/SaturatingMath.h, and remove the old APIs from Checked.
57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
/*
|
|
* Copyright (c) 2024-2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <AK/Optional.h>
|
|
#include <LibWeb/DOM/AbstractElement.h>
|
|
#include <LibWeb/Forward.h>
|
|
|
|
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
|
|
using CounterValue = i32;
|
|
|
|
// https://drafts.csswg.org/css-lists-3/#counter
|
|
struct Counter {
|
|
FlyString name;
|
|
DOM::AbstractElement originating_element; // "creator"
|
|
bool reversed { false };
|
|
Optional<CounterValue> value;
|
|
};
|
|
|
|
// https://drafts.csswg.org/css-lists-3/#css-counters-set
|
|
class CountersSet {
|
|
public:
|
|
CountersSet() = default;
|
|
~CountersSet() = default;
|
|
|
|
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);
|
|
void append_copy(Counter const&);
|
|
|
|
Optional<Counter&> last_counter_with_name(FlyString const& name);
|
|
Optional<Counter&> counter_with_same_name_and_creator(FlyString const& name, DOM::AbstractElement const&);
|
|
|
|
Vector<Counter> const& counters() const { return m_counters; }
|
|
bool is_empty() const { return m_counters.is_empty(); }
|
|
|
|
void visit_edges(GC::Cell::Visitor&);
|
|
|
|
String dump() const;
|
|
|
|
private:
|
|
Vector<Counter> m_counters;
|
|
};
|
|
|
|
void resolve_counters(DOM::AbstractElement&);
|
|
void inherit_counters(DOM::AbstractElement&);
|
|
|
|
}
|