2021-02-03 10:41:07 +01:00
|
|
|
/*
|
2022-08-07 12:03:41 +02:00
|
|
|
* Copyright (c) 2021-2022, Andreas Kling <kling@serenityos.org>
|
2022-02-06 03:32:26 +00:00
|
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
2021-02-03 10:41:07 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-02-03 10:41:07 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibJS/Forward.h>
|
2022-02-06 03:32:26 +00:00
|
|
|
#include <LibJS/Runtime/JobCallback.h>
|
2021-09-19 22:10:49 +02:00
|
|
|
#include <LibJS/Runtime/VM.h>
|
2022-07-11 16:37:51 +01:00
|
|
|
#include <LibWeb/DOM/MutationObserver.h>
|
2021-09-08 23:09:18 +02:00
|
|
|
#include <LibWeb/HTML/EventLoop/EventLoop.h>
|
2021-02-03 10:41:07 +01:00
|
|
|
|
|
|
|
|
namespace Web::Bindings {
|
|
|
|
|
|
2021-09-08 23:09:18 +02:00
|
|
|
struct WebEngineCustomData final : public JS::VM::CustomData {
|
2022-03-14 13:21:51 -06:00
|
|
|
virtual ~WebEngineCustomData() override = default;
|
2021-09-08 23:09:18 +02:00
|
|
|
|
2022-09-08 00:13:39 +02:00
|
|
|
virtual void spin_event_loop_until(Function<bool()> goal_condition) override;
|
|
|
|
|
|
2021-09-08 23:09:18 +02:00
|
|
|
HTML::EventLoop event_loop;
|
2022-07-11 16:37:51 +01:00
|
|
|
|
|
|
|
|
// FIXME: These should only be on similar-origin window agents, but we don't currently differentiate agent types.
|
|
|
|
|
|
|
|
|
|
// https://dom.spec.whatwg.org/#mutation-observer-compound-microtask-queued-flag
|
|
|
|
|
bool mutation_observer_microtask_queued { false };
|
|
|
|
|
|
|
|
|
|
// https://dom.spec.whatwg.org/#mutation-observer-list
|
|
|
|
|
// FIXME: This should be a set.
|
2022-09-01 17:59:48 +02:00
|
|
|
Vector<JS::Handle<DOM::MutationObserver>> mutation_observers;
|
2022-08-04 20:16:40 +02:00
|
|
|
|
2022-10-17 10:55:16 +02:00
|
|
|
JS::Handle<JS::Realm> internal_realm;
|
|
|
|
|
|
2022-08-04 20:16:40 +02:00
|
|
|
OwnPtr<JS::ExecutionContext> root_execution_context;
|
2021-09-08 23:09:18 +02:00
|
|
|
};
|
|
|
|
|
|
2022-02-06 03:32:26 +00:00
|
|
|
struct WebEngineCustomJobCallbackData final : public JS::JobCallback::CustomData {
|
|
|
|
|
WebEngineCustomJobCallbackData(HTML::EnvironmentSettingsObject& incumbent_settings, OwnPtr<JS::ExecutionContext> active_script_context)
|
|
|
|
|
: incumbent_settings(incumbent_settings)
|
|
|
|
|
, active_script_context(move(active_script_context))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
virtual ~WebEngineCustomJobCallbackData() override = default;
|
2022-02-06 03:32:26 +00:00
|
|
|
|
2023-02-26 16:09:02 -07:00
|
|
|
JS::NonnullGCPtr<HTML::EnvironmentSettingsObject> incumbent_settings;
|
2022-02-06 03:32:26 +00:00
|
|
|
OwnPtr<JS::ExecutionContext> active_script_context;
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-24 19:39:35 +01:00
|
|
|
HTML::Script* active_script();
|
2023-03-17 10:56:59 -04:00
|
|
|
|
|
|
|
|
ErrorOr<void> initialize_main_thread_vm();
|
2021-02-03 10:41:07 +01:00
|
|
|
JS::VM& main_thread_vm();
|
2023-03-17 10:56:59 -04:00
|
|
|
|
2023-02-25 10:44:51 -07:00
|
|
|
void queue_mutation_observer_microtask(DOM::Document const&);
|
2022-08-28 13:42:07 +02:00
|
|
|
NonnullOwnPtr<JS::ExecutionContext> create_a_new_javascript_realm(JS::VM&, Function<JS::Object*(JS::Realm&)> create_global_object, Function<JS::Object*(JS::Realm&)> create_global_this_value);
|
2021-02-03 10:41:07 +01:00
|
|
|
|
|
|
|
|
}
|