2022-12-12 20:55:34 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2022-12-12 20:55:34 +01:00
|
|
|
* 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 {
|
|
|
|
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DEFINE_ALLOCATOR(DocumentState);
|
|
|
|
|
2022-12-12 20:55:34 +01:00
|
|
|
DocumentState::DocumentState() = default;
|
|
|
|
|
|
|
|
DocumentState::~DocumentState() = default;
|
|
|
|
|
2024-04-12 20:13:54 +02:00
|
|
|
JS::NonnullGCPtr<DocumentState> DocumentState::clone() const
|
|
|
|
{
|
2024-11-14 06:13:46 +13:00
|
|
|
JS::NonnullGCPtr<DocumentState> cloned = *heap().allocate<DocumentState>();
|
2024-04-12 20:13:54 +02:00
|
|
|
cloned->m_document = m_document;
|
|
|
|
cloned->m_history_policy_container = m_history_policy_container;
|
|
|
|
cloned->m_request_referrer = m_request_referrer;
|
|
|
|
cloned->m_request_referrer_policy = m_request_referrer_policy;
|
|
|
|
cloned->m_initiator_origin = m_initiator_origin;
|
|
|
|
cloned->m_origin = m_origin;
|
|
|
|
cloned->m_about_base_url = m_about_base_url;
|
|
|
|
cloned->m_nested_histories = m_nested_histories;
|
|
|
|
cloned->m_resource = m_resource;
|
|
|
|
cloned->m_reload_pending = m_reload_pending;
|
|
|
|
cloned->m_ever_populated = m_ever_populated;
|
|
|
|
cloned->m_navigable_target_name = m_navigable_target_name;
|
|
|
|
return cloned;
|
|
|
|
}
|
|
|
|
|
2022-12-12 20:55:34 +01:00
|
|
|
void DocumentState::visit_edges(Cell::Visitor& visitor)
|
|
|
|
{
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
visitor.visit(m_document);
|
2023-04-05 09:08:10 +03:00
|
|
|
for (auto& nested_history : m_nested_histories) {
|
2024-04-15 13:58:21 +02:00
|
|
|
visitor.visit(nested_history.entries);
|
2023-04-05 09:08:10 +03:00
|
|
|
}
|
2022-12-12 20:55:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|