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:
parent
92a628c07c
commit
3e756da564
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