LibWeb: Add fast_is<T> for UIEvents::MouseEvent

This commit is contained in:
Andreas Kling 2024-03-16 14:47:54 +01:00
commit 7121539576
Notes: sideshowbarker 2024-07-17 06:35:16 +09:00
2 changed files with 14 additions and 0 deletions

View file

@ -144,6 +144,11 @@ public:
Vector<JS::Handle<EventTarget>> composed_path() const;
template<typename T>
bool fast_is() const = delete;
virtual bool is_mouse_event() const { return false; }
protected:
void initialize_event(String const&, bool, bool);