mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
This makes open, send and setRequestHeader a bit more spec compliant and adds a bunch of FIXMEs for unimplemented parts.
8 lines
177 B
Plaintext
8 lines
177 B
Plaintext
interface ProgressEvent : Event {
|
|
|
|
readonly attribute boolean lengthComputable;
|
|
readonly attribute unsigned long loaded;
|
|
readonly attribute unsigned long total;
|
|
|
|
};
|