<br><br><div class="gmail_quote">On Thu, Oct 15, 2009 at 1:53 PM, Markus Ernst <span dir="ltr">&lt;<a href="mailto:derernst@gmx.ch">derernst@gmx.ch</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Gregg Tavares schrieb:<div class="im"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I was wondering if there as been a proposal for either an optional argument to setInterval that makes it only callback if the window is visible OR maybe a window.setRenderInterval.<br>
<br>
Here&#39;s the issue that seems like it needs to be solved.<br>
<br>
Currently, AFAIK, the only way to do animation in HTML5 + JavaScript is using setInterval. That&#39;s great but it has the problem that even when the window is minimized or the page is not the front tab, JavaScript has no way to know to stop animating.  So, for a CPU heavy animation using canvas 2d or canvas 3d, even a hidden tab uses lots of CPU. Of course the browser does not copy the bits from the canvas to the window but JavaScript is still drawing hundreds of thousands of pixels to the canvas&#39;s internal image buffer through canvas commands.<br>

</blockquote>
<br></div>
[...]<div class="im"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
There are probably other possible solutions to this problem but it seems like the easiest would be either<br>
<br>
*) adding an option to window.setInterval or only callback if the window is visible<br>
<br>
*) adding window.setIntervalIfVisible (same as the previous option really)<br>
<br>
A possibly better solution would be<br>
<br>
*) element.setIntervalIfVisible<br>
<br>
Which would only call the callback if that particular element is visible.<br>
</blockquote>
<br></div>
>From a performance point of view it might even be worth thinking about the contrary: Allow UAs to stop the execution of scripts on non-visible windows or elements by default, and provide a method to explicitly specify if the execution of a script must not be stopped.<br>

<br>
If you provide methods to check the visibility of a window or element, you leave it up to the author to use them or not. I think performance issues should rather be up to the UA.<br>
</blockquote></div><br>I agree that would be ideal. Unfortunately, current webpages already expect setInternval to function even when they are not visible. web based chat and mail clients come to mind as examples. So, unfortunately, it doesn&#39;t seem like a problem a UA can solve on it&#39;s own.<br>
<br>On the otherhand, if the solution is as simple as add a flag to setInterval then it&#39;s at least a very simple change for those apps that want to not hog the CPU when not visible.<br><br><br>