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

LibWeb: Rename Event.srcTarget to Event.srcElement

It's called srcElement instead of srcTarget.
Required by w3school's search focus handler.
This commit is contained in:
Luke Wilde 2022-06-18 16:07:51 +01:00 committed by Linus Groh
parent f34e69a52b
commit bae330d559
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ interface Event {
readonly attribute DOMString type;
readonly attribute EventTarget? target;
readonly attribute EventTarget? srcTarget;
readonly attribute EventTarget? srcElement;
readonly attribute EventTarget? currentTarget;
sequence<EventTarget> composedPath();