mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
831fdcaabc
We now fire "pageshow" events at the appropriate time during document loading (done by the parser.) Note that there are no corresponding "pagehide" events yet.
36 lines
794 B
C++
36 lines
794 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
class PageTransitionEvent final : public DOM::Event {
|
|
public:
|
|
using WrapperType = Bindings::PageTransitionEventWrapper;
|
|
|
|
static NonnullRefPtr<PageTransitionEvent> create(FlyString event_name, bool persisted)
|
|
{
|
|
return adopt_ref(*new PageTransitionEvent(move(event_name), persisted));
|
|
}
|
|
|
|
virtual ~PageTransitionEvent() override = default;
|
|
|
|
bool persisted() const { return m_persisted; }
|
|
|
|
protected:
|
|
PageTransitionEvent(FlyString event_name, bool persisted)
|
|
: DOM::Event(move(event_name))
|
|
, m_persisted(persisted)
|
|
{
|
|
}
|
|
|
|
bool m_persisted { false };
|
|
};
|
|
|
|
}
|