1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:07:34 +00:00

LibWeb: Emit "focusin" and "focusout" events

This commit is contained in:
Aliaksandr Kalenik 2024-02-25 06:51:28 +01:00 committed by Andreas Kling
parent cd7b5b18e4
commit 934aa6af6a
7 changed files with 78 additions and 0 deletions

View file

@ -41,6 +41,8 @@ interface mixin GlobalEventHandlers {
attribute EventHandler onended;
attribute OnErrorEventHandler onerror;
attribute EventHandler onfocus;
attribute EventHandler onfocusin;
attribute EventHandler onfocusout;
attribute EventHandler onformdata;
attribute EventHandler oninput;
attribute EventHandler oninvalid;