Files
ladybird/Libraries/LibWeb/CSS/StyleValues/FitContentStyleValue.h
Tim Ledbetter a27d269721 LibWeb: Pass StringBuilder around during StyleValue serialization
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.
2026-01-09 10:00:58 +01:00

55 lines
1.6 KiB
C++

/*
* Copyright (c) 2025, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/CSS/PercentageOr.h>
#include <LibWeb/CSS/StyleValues/StyleValue.h>
namespace Web::CSS {
class FitContentStyleValue final : public StyleValue {
public:
static ValueComparingNonnullRefPtr<FitContentStyleValue const> create()
{
return adopt_ref(*new (nothrow) FitContentStyleValue());
}
static ValueComparingNonnullRefPtr<FitContentStyleValue const> create(LengthPercentage length_percentage)
{
return adopt_ref(*new (nothrow) FitContentStyleValue(move(length_percentage)));
}
virtual ~FitContentStyleValue() override = default;
virtual void serialize(StringBuilder& builder, SerializationMode mode) const override
{
if (!m_length_percentage.has_value()) {
builder.append("fit-content"sv);
return;
}
builder.appendff("fit-content({})", m_length_percentage->to_string(mode));
}
bool equals(StyleValue const& other) const override
{
if (type() != other.type())
return false;
return m_length_percentage == other.as_fit_content().m_length_percentage;
}
[[nodiscard]] Optional<LengthPercentage> const& length_percentage() const { return m_length_percentage; }
private:
FitContentStyleValue(Optional<LengthPercentage> length_percentage = {})
: StyleValue(Type::FitContent)
, m_length_percentage(move(length_percentage))
{
}
Optional<LengthPercentage> m_length_percentage;
};
}