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

LibWeb: Use long long where it was replaced with long

This commit is contained in:
stelar7 2022-05-10 11:08:02 +02:00 committed by Linus Groh
parent 3413eb1416
commit 94bb5a779b
4 changed files with 48 additions and 48 deletions

View file

@ -4,8 +4,8 @@ interface ProgressEvent : Event {
constructor(DOMString type, optional ProgressEventInit eventInitDict = {});
readonly attribute boolean lengthComputable;
readonly attribute unsigned long loaded;
readonly attribute unsigned long total;
readonly attribute unsigned long long loaded;
readonly attribute unsigned long long total;
};
dictionary ProgressEventInit : EventInit {