2025-01-27 10:39:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022-2025, Sam Atkins <sam@ladybird.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/Math.h>
|
|
|
|
#include <LibWeb/CSS/Number.h>
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2025-08-06 22:19:09 +12:00
|
|
|
String Number::to_string(SerializationMode) const
|
2025-01-27 10:39:00 +00:00
|
|
|
{
|
|
|
|
if (m_type == Type::IntegerWithExplicitSign)
|
|
|
|
return MUST(String::formatted("{:+}", m_value));
|
|
|
|
if (m_value == AK::Infinity<double>)
|
|
|
|
return "infinity"_string;
|
|
|
|
if (m_value == -AK::Infinity<double>)
|
|
|
|
return "-infinity"_string;
|
|
|
|
if (isnan(m_value))
|
|
|
|
return "NaN"_string;
|
2025-05-18 15:59:11 +02:00
|
|
|
return MUST(String::formatted("{:.5}", m_value));
|
2025-01-27 10:39:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|