mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 18:30:27 +00:00
Previously, some StyleValues created a large number of intermediate strings during serialization. Passing a StringBUilder into the serialization function allows us to avoid a large number of these unnecessary allocations.
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// https://drafts.csswg.org/css-variables/#guaranteed-invalid-value
|
|
class GuaranteedInvalidStyleValue final : public StyleValueWithDefaultOperators<GuaranteedInvalidStyleValue> {
|
|
public:
|
|
static ValueComparingNonnullRefPtr<GuaranteedInvalidStyleValue> create()
|
|
{
|
|
static ValueComparingNonnullRefPtr<GuaranteedInvalidStyleValue> instance = adopt_ref(*new (nothrow) GuaranteedInvalidStyleValue());
|
|
return instance;
|
|
}
|
|
virtual ~GuaranteedInvalidStyleValue() override = default;
|
|
virtual void serialize(StringBuilder&, SerializationMode) const override { }
|
|
virtual Vector<Parser::ComponentValue> tokenize() const override
|
|
{
|
|
return { Parser::ComponentValue { Parser::GuaranteedInvalidValue {} } };
|
|
}
|
|
|
|
bool properties_equal(GuaranteedInvalidStyleValue const&) const { return true; }
|
|
|
|
private:
|
|
GuaranteedInvalidStyleValue()
|
|
: StyleValueWithDefaultOperators(Type::GuaranteedInvalid)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|