mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
b677844f8d
This was removed from the ShadowRealm HTML spec integration PR after my suggestion as it is not used anywhere, and I don't believe it would ever need to be used in the future or by other specs.
19 lines
429 B
C++
19 lines
429 B
C++
/*
|
|
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/HTML/Scripting/ModuleMap.h>
|
|
#include <LibWeb/HTML/Scripting/SyntheticRealmSettings.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
void SyntheticRealmSettings::visit_edges(JS::Cell::Visitor& visitor)
|
|
{
|
|
execution_context->visit_edges(visitor);
|
|
visitor.visit(principal_realm);
|
|
visitor.visit(module_map);
|
|
}
|
|
|
|
}
|