ladybird/Libraries/LibWeb/CSS/StyleValues/IntegerStyleValue.cpp
Andreas Kling e85c3c97fb LibWeb: Add mode flag to CSSStyleValue::to_string()
This will be used to differentiate between serialization for resolved
style (i.e window.getComputedStyle()) and serialization for all other
purposes.
2024-12-07 08:31:03 +00:00

16 lines
270 B
C++

/*
* Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "IntegerStyleValue.h"
namespace Web::CSS {
String IntegerStyleValue::to_string(SerializationMode) const
{
return String::number(m_value);
}
}