diff options
author | stelar7 <dudedbz@gmail.com> | 2022-05-10 11:08:02 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-06 22:34:45 +0100 |
commit | 94bb5a779b47ca20502e0f53154758eede33b4a4 (patch) | |
tree | 36f4bd4651c89a600c8d9563b5fbee3d94c487bd /Userland/Libraries/LibWeb/XHR/ProgressEvent.idl | |
parent | 3413eb141653f91b31a64b901c213872259d2c03 (diff) | |
download | serenity-94bb5a779b47ca20502e0f53154758eede33b4a4.zip |
LibWeb: Use `long long` where it was replaced with `long`
Diffstat (limited to 'Userland/Libraries/LibWeb/XHR/ProgressEvent.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/XHR/ProgressEvent.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/XHR/ProgressEvent.idl b/Userland/Libraries/LibWeb/XHR/ProgressEvent.idl index c92731e934..b8d8515be9 100644 --- a/Userland/Libraries/LibWeb/XHR/ProgressEvent.idl +++ b/Userland/Libraries/LibWeb/XHR/ProgressEvent.idl @@ -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 { |