
Note that as of this commit, there aren't any such throwers, and the call site in Heap::allocate will drop exceptions on the floor. This commit only serves to change the declaration of the overrides, make sure they return an empty value, and to propagate OOM errors frm their base initialize invocations.
38 lines
1 KiB
C++
38 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/Event.h>
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
struct SubmitEventInit : public DOM::EventInit {
|
|
JS::GCPtr<HTMLElement> submitter;
|
|
};
|
|
|
|
class SubmitEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(SubmitEvent, DOM::Event);
|
|
|
|
public:
|
|
static SubmitEvent* create(JS::Realm&, DeprecatedFlyString const& event_name, SubmitEventInit const& event_init);
|
|
static SubmitEvent* construct_impl(JS::Realm&, DeprecatedFlyString const& event_name, SubmitEventInit const& event_init);
|
|
|
|
virtual ~SubmitEvent() override;
|
|
|
|
JS::GCPtr<HTMLElement> submitter() const { return m_submitter; }
|
|
|
|
private:
|
|
SubmitEvent(JS::Realm&, DeprecatedFlyString const& event_name, SubmitEventInit const& event_init);
|
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
JS::GCPtr<HTMLElement> m_submitter;
|
|
};
|
|
|
|
}
|