Coverage Report

Created: 2025-12-18 07:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/serenity/Userland/Libraries/LibWeb/CSS/StyleValues/DisplayStyleValue.cpp
Line
Count
Source
1
/*
2
 * Copyright (c) 2023, Emil Militzer <emil.militzer@posteo.de>
3
 *
4
 * SPDX-License-Identifier: BSD-2-Clause
5
 */
6
7
#include "DisplayStyleValue.h"
8
9
namespace Web::CSS {
10
11
ValueComparingNonnullRefPtr<DisplayStyleValue> DisplayStyleValue::create(Display const& display)
12
0
{
13
0
    return adopt_ref(*new (nothrow) DisplayStyleValue(display));
14
0
}
15
16
}