summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/XHR/ProgressEvent.idl
blob: 64e9805ef205647d9c89119c105ab9690eee9bab (plain)
1
2
3
4
5
6
7
interface ProgressEvent : Event {

    readonly attribute boolean lengthComputable;
    readonly attribute unsigned long loaded;
    readonly attribute unsigned long total;

};