Coverage Report

Created: 2025-11-16 07:46

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/serenity/Userland/Libraries/LibWeb/HTML/CustomElements/CustomElementDefinition.cpp
Line
Count
Source
1
/*
2
 * Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
3
 *
4
 * SPDX-License-Identifier: BSD-2-Clause
5
 */
6
7
#include <LibWeb/HTML/CustomElements/CustomElementDefinition.h>
8
9
namespace Web::HTML {
10
11
void CustomElementDefinition::visit_edges(Visitor& visitor)
12
0
{
13
0
    Base::visit_edges(visitor);
14
0
    visitor.visit(m_constructor);
15
0
    visitor.visit(m_lifecycle_callbacks);
16
0
}
17
18
}