mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-28 11:54:15 +00:00
17 lines
262 B
C++
17 lines
262 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "IntegerStyleValue.h"
|
||
|
|
|
||
|
|
namespace Web::CSS {
|
||
|
|
|
||
|
|
ErrorOr<String> IntegerStyleValue::to_string() const
|
||
|
|
{
|
||
|
|
return String::number(m_value);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|