mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
LibWeb: Rename StyleValue -> CSSStyleValue
This matches the name in the CSS Typed OM spec. https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue No behaviour changes.
This commit is contained in:
parent
2e1f62681c
commit
0e3487b9ab
Notes:
github-actions[bot]
2024-08-15 12:59:46 +00:00
Author: https://github.com/AtkinsSJ
Commit: 0e3487b9ab
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1076
100 changed files with 576 additions and 575 deletions
|
@ -16,7 +16,7 @@
|
|||
|
||||
namespace Web::CSS {
|
||||
|
||||
CounterStyleValue::CounterStyleValue(CounterFunction function, FlyString counter_name, ValueComparingNonnullRefPtr<StyleValue const> counter_style, FlyString join_string)
|
||||
CounterStyleValue::CounterStyleValue(CounterFunction function, FlyString counter_name, ValueComparingNonnullRefPtr<CSSStyleValue const> counter_style, FlyString join_string)
|
||||
: StyleValueWithDefaultOperators(Type::Counter)
|
||||
, m_properties {
|
||||
.function = function,
|
||||
|
@ -30,7 +30,7 @@ CounterStyleValue::CounterStyleValue(CounterFunction function, FlyString counter
|
|||
CounterStyleValue::~CounterStyleValue() = default;
|
||||
|
||||
// https://drafts.csswg.org/css-counter-styles-3/#generate-a-counter
|
||||
static String generate_a_counter_representation(StyleValue const& counter_style, i32 value)
|
||||
static String generate_a_counter_representation(CSSStyleValue const& counter_style, i32 value)
|
||||
{
|
||||
// When asked to generate a counter representation using a particular counter style for a particular
|
||||
// counter value, follow these steps:
|
||||
|
@ -147,7 +147,7 @@ String CounterStyleValue::to_string() const
|
|||
|
||||
// 4. Let list be a list of CSS component values belonging to <counter>,
|
||||
// omitting the last CSS component value if it is "decimal".
|
||||
Vector<RefPtr<StyleValue const>> list;
|
||||
Vector<RefPtr<CSSStyleValue const>> list;
|
||||
list.append(CustomIdentStyleValue::create(m_properties.counter_name));
|
||||
if (m_properties.function == CounterFunction::Counters)
|
||||
list.append(StringStyleValue::create(m_properties.join_string.to_string()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue