Closed
Bug 633421
Opened 14 years ago
Closed 14 years ago
Clamp setTimeout/setInterval to something higher than 10ms in inactive tabs
Categories
(Core :: DOM: Core & HTML, defect, P1)
Core
DOM: Core & HTML
Tracking
()
RESOLVED
FIXED
mozilla5
People
(Reporter: bzbarsky, Assigned: bzbarsky)
References
(Depends on 2 open bugs)
Details
(Keywords: dev-doc-complete)
Attachments
(2 files)
(deleted),
patch
|
jst
:
review+
|
Details | Diff | Splinter Review |
(deleted),
text/html
|
Details |
We throttle the refresh driver; we should throttle DOM timers too. The issue is web compat...
On the other hand, I hear tell that other browsers are considering doing this, so at least we're not alone.
Assignee | ||
Comment 1•14 years ago
|
||
Oh, for refresh driver we throttle to 1Hz, but once 2.0 ships I'll land a patch to throttle to an doubling-each-time interval.
I don't think we want the doubling behavior for DOM timers, though.
Assignee | ||
Comment 2•14 years ago
|
||
nsGlobalWindow has its own concept of "active" which seems to do with focus. I don't think we want to use that here, fwiw.
Assignee | ||
Comment 3•14 years ago
|
||
Attachment #511636 -
Flags: review?(jst)
Assignee | ||
Updated•14 years ago
|
Assignee: nobody → bzbarsky
OS: Mac OS X → All
Priority: -- → P1
Hardware: x86 → All
Whiteboard: [need review]
Comment 4•14 years ago
|
||
Chrome is going to set the minimum interval to 0.5Hz I believe.
Assignee | ||
Comment 5•14 years ago
|
||
Yeah, that's what the attached patch uses as the default pref value.
Assignee | ||
Comment 6•14 years ago
|
||
Or rather it does 0.5s, which is what I think you meant. We should clearly make it 1Hz to avoid that problem....
Comment 7•14 years ago
|
||
Chromium issue is http://code.google.com/p/chromium/issues/detail?id=66078 and they seem to use 1s.
dev-doc-needed: https://developer.mozilla.org/en/DOM/window.setTimeout#Minimum_delay_and_timeout_nesting will need to mention this change if it lands.
Keywords: dev-doc-needed
Comment 8•14 years ago
|
||
Comment on attachment 511636 [details] [diff] [review]
Pretty easy to do if we want to!
Let's give this a shot! Patch looks good (and I'm fine with either 1 or 2Hz here, maybe go with 1 to match chrome?).
Attachment #511636 -
Flags: review?(jst) → review+
Assignee | ||
Updated•14 years ago
|
Whiteboard: [need review] → [need landing]
Assignee | ||
Comment 10•14 years ago
|
||
Pushed http://hg.mozilla.org/mozilla-central/rev/e328ab1bcb03 except I forgot to fix the commit message... I used a 1000ms clamp, but the commit message still says 500ms. The correct number is 1000.
Status: NEW → RESOLVED
Closed: 14 years ago
Flags: in-testsuite?
Resolution: --- → FIXED
Whiteboard: [need landing]
Target Milestone: --- → mozilla2.2
Comment 11•14 years ago
|
||
is there anything here that mobile/e10s needs to do to get this benefit?
Assignee | ||
Comment 12•14 years ago
|
||
I don't think so. You're already flagging docshells as inactive so images get discarded, right?
I can write up a testcase for you to test whether this patch is working if you want (pretty easy to do a manual test; hard to do an automated one).
Comment 13•14 years ago
|
||
yes, i think we do. alon would know specifically. happy to run a test case.
Comment 14•14 years ago
|
||
I tested to make sure, and this works perfectly on mobile. Great stuff!
On a related note, this might make bug 588975 (stop animating images in background tabs) easier to do, which is also about reducing activity in inactive tabs.
Blocks: 588975
Assignee | ||
Comment 15•14 years ago
|
||
Comment 16•14 years ago
|
||
This works on background tabs, but not on active tabs on minimized windows. Is this the expected behavior?
For comparison, in Chrome, the active tab of a minimized window is considered inactive.
Assignee | ||
Comment 17•14 years ago
|
||
> Is this the expected behavior?
For now, yes. Which tabs are active is under control of the user interface; it might be worth a bug on Firefox to mark the active tab in a minimized window as inactive.
Assignee | ||
Comment 18•14 years ago
|
||
I filed bug 648045 and bug 648046 on applying the throttling in more cases.
Comment 19•14 years ago
|
||
Documentation updated:
https://developer.mozilla.org/en/DOM/window.setTimeout#Inactive_tabs
Also updated Firefox 5 for developers.
Keywords: dev-doc-needed → dev-doc-complete
Comment 20•13 years ago
|
||
Is there a specific DOM event that gets fired when the clamping to 1000 milliseconds starts (We would need to register a listener for it first of course though for it to be exposed...)? This currently trashes the JS GameBoy Color emulator audio when it's running inside of an inactive tab, as everything is driven in it at 16 ms intervals by a sole setInterval.
So the question remains, is there a unique DOM event that would fire solely for this throttling, to warn the web app of the slowdown? Doing normal timestamp comparisons is not the best, due to slow browsers (mobile especially) and timestamp checking for automatic pausing could get hacky.
Assignee | ||
Comment 21•13 years ago
|
||
> Is there a specific DOM event that gets fired
At this point, yes: http://www.w3.org/TR/2011/WD-page-visibility-20110602/#sec-visibilitychange-event
Comment 22•13 years ago
|
||
Thanks
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•