1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:57:45 +00:00

LibWeb: Flesh out existing XHR methods a bit more

This makes open, send and setRequestHeader a bit more spec compliant and
adds a bunch of FIXMEs for unimplemented parts.
This commit is contained in:
Luke 2021-01-23 17:50:22 +00:00 committed by Andreas Kling
parent c68148efc5
commit 4f2e154dbe
8 changed files with 359 additions and 29 deletions

View file

@ -0,0 +1,7 @@
interface ProgressEvent : Event {
readonly attribute boolean lengthComputable;
readonly attribute unsigned long loaded;
readonly attribute unsigned long total;
};