ladybird/Libraries/LibWeb/UIEvents/TextEvent.h
Andreas Kling 3e8c8b185e LibWeb: Use WindowProxy instead of Window in UI Events IDL
I believe this is an error in the UI Events spec, and it should be
updated to match the HTML spec (which uses WindowProxy everywhere).

This fixes a bunch of issues already covered by existing WPT tests.

Spec bug: https://github.com/w3c/uievents/issues/388

Note that WebKit has been using WindowProxy instead of Window in
UI Events IDL since 2018:
816158b4aa
2024-11-17 23:47:24 +01:00

35 lines
833 B
C++

/*
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/UIEvents/UIEvent.h>
namespace Web::UIEvents {
class TextEvent final : public UIEvent {
WEB_PLATFORM_OBJECT(TextEvent, UIEvent);
GC_DECLARE_ALLOCATOR(TextEvent);
public:
[[nodiscard]] static GC::Ref<TextEvent> create(JS::Realm&, FlyString const& event_name);
virtual ~TextEvent() override;
// https://w3c.github.io/uievents/#dom-textevent-data
String data() const { return m_data; }
void init_text_event(String const& type, bool bubbles, bool cancelable, GC::Ptr<HTML::WindowProxy> view, String const& data);
private:
TextEvent(JS::Realm&, FlyString const& event_name);
virtual void initialize(JS::Realm&) override;
String m_data;
};
}