mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 17:15:08 +00:00

This patch adds the following event handler attributes to XHR's EventTarget base class: - onloadstart - onprogress - onabort - onerror - onload - ontimeout - onloadend
11 lines
319 B
Text
11 lines
319 B
Text
interface XMLHttpRequestEventTarget : EventTarget {
|
|
|
|
attribute EventHandler onloadstart;
|
|
attribute EventHandler onprogress;
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler onerror;
|
|
attribute EventHandler onload;
|
|
attribute EventHandler ontimeout;
|
|
attribute EventHandler onloadend;
|
|
|
|
};
|