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

LibWeb: Add the UIEvent::{view, detail} IDL attributes

This commit is contained in:
Idan Horowitz 2021-10-01 19:18:19 +03:00 committed by Andreas Kling
parent 1c4404c46a
commit f176514db8
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,4 @@
interface UIEvent : Event {
readonly attribute Window? view;
readonly attribute long detail;
};