-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a fallback for the time tracking in the web (#814)
Every browser's `performance.now()` implementation is not spec compliant, unless the browser is running on Windows. On every other operating system, `performance.now()` does not properly keep ticking while the operating system is suspended / sleeping. There isn't much that we can do. What we can do is we calculate the initial difference between `performance.now()` and `Date.now()` and store it in a thread local. Later, when the phone gets locked, `performance.now()` starts to break. However, we can detect when the phone gets unlocked again by listening to the `visibilitychange` event. This is where we can update the difference again. This of course isn't ideal, as `Date.now()` gets adjusted by NTP synchronizations, but it's the best we can do. More information: https://developer.mozilla.org/en-US/docs/Web/API/Performance/now#ticking_during_sleep
- Loading branch information
Showing
2 changed files
with
65 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters