Closed
Bug 1909462
Opened 4 months ago
Closed 4 months ago
Make requestAnimationFrame use uint32_t handles instead of int32_t as per spec
Categories
(Core :: DOM: Core & HTML, defect)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
130 Branch
Tracking | Status | |
---|---|---|
firefox130 | --- | fixed |
People
(Reporter: aosmond, Assigned: aosmond)
References
Details
Attachments
(1 file)
The current version of the spec says that requestAnimationFrame
and cancelAnimationFrame
should use unsigned long
instead of long
for the handles:
https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#animation-frames
Assignee | ||
Updated•4 months ago
|
Assignee | ||
Comment 1•4 months ago
|
||
The current version of the spec indicates that we should be using
uint32_t instead of int32_t for the handles with requestAnimationFrame
and cancelAnimationFrame.
https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#animation-frames
Pushed by aosmond@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/149722297f03
Switch requestAnimationFrame handles to be uint32_t per spec. r=webidl,emilio
Comment 3•4 months ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 4 months ago
status-firefox130:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 130 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•