2023-08-23 12:53:11 -04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2024-11-14 10:01:23 -05:00
|
|
|
#include <LibGC/Heap.h>
|
2023-08-23 12:53:11 -04:00
|
|
|
#include <LibJS/Runtime/Realm.h>
|
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
|
|
#include <LibWeb/Bindings/NavigationCurrentEntryChangeEventPrototype.h>
|
|
|
|
#include <LibWeb/HTML/NavigationCurrentEntryChangeEvent.h>
|
|
|
|
#include <LibWeb/HTML/NavigationHistoryEntry.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2024-11-14 10:01:23 -05:00
|
|
|
GC_DEFINE_ALLOCATOR(NavigationCurrentEntryChangeEvent);
|
2023-11-19 13:47:52 -05:00
|
|
|
|
2024-11-14 10:01:23 -05:00
|
|
|
GC::Ref<NavigationCurrentEntryChangeEvent> NavigationCurrentEntryChangeEvent::construct_impl(JS::Realm& realm, FlyString const& event_name, NavigationCurrentEntryChangeEventInit const& event_init)
|
2023-08-23 12:53:11 -04:00
|
|
|
{
|
2024-11-13 11:50:17 -05:00
|
|
|
return realm.create<NavigationCurrentEntryChangeEvent>(realm, event_name, event_init);
|
2023-08-23 12:53:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
NavigationCurrentEntryChangeEvent::NavigationCurrentEntryChangeEvent(JS::Realm& realm, FlyString const& event_name, NavigationCurrentEntryChangeEventInit const& event_init)
|
|
|
|
: DOM::Event(realm, event_name, event_init)
|
|
|
|
, m_navigation_type(event_init.navigation_type)
|
|
|
|
, m_from(*event_init.from)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NavigationCurrentEntryChangeEvent::~NavigationCurrentEntryChangeEvent() = default;
|
|
|
|
|
|
|
|
void NavigationCurrentEntryChangeEvent::initialize(JS::Realm& realm)
|
|
|
|
{
|
|
|
|
Base::initialize(realm);
|
2024-03-16 08:13:08 -04:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(NavigationCurrentEntryChangeEvent);
|
2023-08-23 12:53:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void NavigationCurrentEntryChangeEvent::visit_edges(JS::Cell::Visitor& visitor)
|
|
|
|
{
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
visitor.visit(m_from);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|