Coverage Report

Created: 2025-03-04 07:22

/src/serenity/Userland/Libraries/LibWeb/CSS/StyleValues/IntegerStyleValue.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
3
 *
4
 * SPDX-License-Identifier: BSD-2-Clause
5
 */
6
7
#include "IntegerStyleValue.h"
8
9
namespace Web::CSS {
10
11
String IntegerStyleValue::to_string() const
12
0
{
13
0
    return String::number(m_value);
14
0
}
15
16
}