Implement Frame Timing API
Categories
(Core :: DOM: Core & HTML, enhancement, P5)
Tracking
()
People
(Reporter: hiro, Unassigned)
References
(Depends on 2 open bugs, )
Details
Attachments
(1 file, 6 obsolete files)
72.16 KB,
patch
|
Details | Diff | Splinter Review |
Updated•10 years ago
|
Reporter | ||
Comment 1•10 years ago
|
||
Comment 2•10 years ago
|
||
Reporter | ||
Comment 3•10 years ago
|
||
Reporter | ||
Comment 4•10 years ago
|
||
Comment 5•10 years ago
|
||
Reporter | ||
Comment 6•10 years ago
|
||
Reporter | ||
Comment 7•10 years ago
|
||
Reporter | ||
Comment 8•10 years ago
|
||
Reporter | ||
Comment 9•10 years ago
|
||
Reporter | ||
Comment 10•10 years ago
|
||
Reporter | ||
Comment 11•10 years ago
|
||
Reporter | ||
Comment 12•10 years ago
|
||
Reporter | ||
Comment 13•10 years ago
|
||
Reporter | ||
Comment 14•10 years ago
|
||
Comment 15•9 years ago
|
||
Updated•7 years ago
|
Assignee | ||
Updated•6 years ago
|
Comment 16•3 years ago
|
||
Did this die?
Updated•3 years ago
|
Comment 17•3 years ago
|
||
I suppose I can provide more clarity as well:
I’m on the Photoshop for Web team at Adobe. We’re looking for a solid way to programmatically track frames per second on a number of devices. Right now I’m just doing this with requestAnimationFrame and timers, but it doesn’t feel terribly accurate.
Comment 18•3 years ago
|
||
I believe this spec has been abandoned. According to https://wicg.github.io/frame-timing/
This work is NO LONGER BEING PURSUED. It's left here for historical purposes.
Comment 19•3 years ago
|
||
Regarding requestAnimationFrame
, you can use the timestamp passed-in the to callback to get the frame time (or query document.timeline.currentTime
for the same value) although I agree it is less than ideal.
Comment 20•3 years ago
|
||
Thank you for these tips! These definitely look more accurate than using performance.now. I had never even heard of document.timeline.currentTime
.
Comment 21•3 years ago
|
||
If the spec has been abandoned, should we close this and linked bugs as WONTFIX?
Comment 23•3 years ago
|
||
Spec has been abandoned.
Description
•