mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 22:54:57 +00:00
14 lines
381 B
Text
14 lines
381 B
Text
#import <DOM/EventTarget.idl>
|
|
#import <DOM/EventHandler.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;
|
|
|
|
};
|