1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

LibWeb: Use unsigned long long for ProgressEventInit

The IDL generator now supports this :^)
This commit is contained in:
Shannon Booth 2024-02-06 17:03:43 +13:00 committed by Andreas Kling
parent 92a628c07c
commit 3e756da564
2 changed files with 5 additions and 7 deletions

View file

@ -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;
};