blob: 0bc1c586f4db02eab8360fe0e0b5925fff7c932d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/DOM/Document.h>
#include <LibWeb/HTML/DocumentState.h>
namespace Web::HTML {
DocumentState::DocumentState() = default;
DocumentState::~DocumentState() = default;
void DocumentState::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_document);
for (auto& nested_history : m_nested_histories) {
for (auto& entry : nested_history.entries) {
visitor.visit(entry);
}
}
}
}
|