mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibWeb: Remove ShadowRealm HTML integration
This commit is contained in:
committed by
Shannon Booth
parent
f27bc38aa7
commit
bb0f244667
Notes:
github-actions[bot]
2026-04-05 11:58:52 +00:00
Author: https://github.com/shannonbooth Commit: https://github.com/LadybirdBrowser/ladybird/commit/bb0f244667d Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8753
@@ -20,15 +20,15 @@
|
||||
namespace Web::Bindings {
|
||||
|
||||
struct WebEngineCustomJobCallbackData final : public JS::JobCallback::CustomData {
|
||||
WebEngineCustomJobCallbackData(JS::Realm& incumbent_realm, OwnPtr<JS::ExecutionContext> active_script_context)
|
||||
: incumbent_realm(incumbent_realm)
|
||||
WebEngineCustomJobCallbackData(HTML::EnvironmentSettingsObject& incumbent_settings, OwnPtr<JS::ExecutionContext> active_script_context)
|
||||
: incumbent_settings(incumbent_settings)
|
||||
, active_script_context(move(active_script_context))
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~WebEngineCustomJobCallbackData() override = default;
|
||||
|
||||
GC::Ref<JS::Realm> incumbent_realm;
|
||||
GC::Ref<HTML::EnvironmentSettingsObject> incumbent_settings;
|
||||
OwnPtr<JS::ExecutionContext> active_script_context;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user