mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 16:46:08 +00:00
LibWeb: Use unsigned long long for ProgressEventInit
The IDL generator now supports this :^)
This commit is contained in:
parent
92a628c07c
commit
3e756da564
Notes:
sideshowbarker
2024-07-17 07:09:53 +09:00
Author: https://github.com/shannonbooth
Commit: 3e756da564
Pull-request: https://github.com/SerenityOS/serenity/pull/23089
Reviewed-by: https://github.com/LucasChollet
Reviewed-by: https://github.com/awesomekling
2 changed files with 5 additions and 7 deletions
|
@ -12,6 +12,6 @@ interface ProgressEvent : Event {
|
|||
|
||||
dictionary ProgressEventInit : EventInit {
|
||||
boolean lengthComputable = false;
|
||||
unsigned long loaded = 0;
|
||||
unsigned long total = 0;
|
||||
unsigned long long loaded = 0;
|
||||
unsigned long long total = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue