mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
834202aeb9
This needs to happen before prototype/constructor intitialization can be made lazy. Otherwise, GC could run during the C++ constructor and try to collect the object currently being created.
32 lines
703 B
C++
32 lines
703 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/UIEvents/UIEvent.h>
|
|
|
|
namespace Web::UIEvents {
|
|
|
|
struct FocusEventInit : public UIEventInit {
|
|
JS::GCPtr<DOM::EventTarget> related_target;
|
|
};
|
|
|
|
class FocusEvent final : public UIEvent {
|
|
WEB_PLATFORM_OBJECT(FocusEvent, UIEvent);
|
|
|
|
public:
|
|
static FocusEvent* construct_impl(JS::Realm&, DeprecatedFlyString const& event_name, FocusEventInit const& event_init);
|
|
|
|
virtual ~FocusEvent() override;
|
|
|
|
private:
|
|
FocusEvent(JS::Realm&, DeprecatedFlyString const& event_name, FocusEventInit const&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
};
|
|
|
|
}
|