summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/UIEvents/FocusEvent.cpp
blob: 3397fc7b603603abd8b68900dbe4a416d9341017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibWeb/UIEvents/FocusEvent.h>

namespace Web::UIEvents {

FocusEvent::FocusEvent(FlyString const& event_name, FocusEventInit const& event_init)
    : UIEvent(event_name)
{
    set_related_target(const_cast<DOM::EventTarget*>(event_init.related_target.ptr()));
}

FocusEvent::~FocusEvent()
{
}

}