mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 14:15:08 +00:00
13 lines
350 B
Text
13 lines
350 B
Text
#import <DOM/EventTarget.idl>
|
|
|
|
interface XMLHttpRequestEventTarget : EventTarget {
|
|
|
|
attribute EventHandler onloadstart;
|
|
attribute EventHandler onprogress;
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler onerror;
|
|
attribute EventHandler onload;
|
|
attribute EventHandler ontimeout;
|
|
attribute EventHandler onloadend;
|
|
|
|
};
|