On Tue, Nov 18, 2008 at 4:09 AM, timeless <span dir="ltr">&lt;<a href="mailto:timeless@gmail.com">timeless@gmail.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Tue, Nov 18, 2008 at 3:15 AM, Tab Atkins Jr. &lt;<a href="mailto:jackalmage@gmail.com">jackalmage@gmail.com</a>&gt; wrote:<br>
&gt; Keep in mind what we&#39;re dealing with here.<br>
<br>
</div>dumb web authors. check.<br>
<div class="Ih2E3d"><br>
&gt; This isn&#39;t some trivial Javascript timer firing off events at 60Hz.<br>
<br>
&gt; This is a full &lt;video&gt;<br>
&gt; element. &nbsp;If a little &quot;i++; if( i%60 == 0) {code}&quot; is killing the CPU, then<br>
&gt; that device isn&#39;t capable of playing a &lt;video&gt; either.<br>
<br>
</div>if that little code causes the entire page to reflow because the web<br>
author is stupid, then it&#39;s a problem.<br>
<br>
if i&#39;m really lucky my device might be able to use a special module to<br>
deal w/ video processing without killing my battery life.<br>
<br>
while i am praying that JIT will improve my life, it won&#39;t save my<br>
battery from stupid web authors and their pages.<br>
<br>
where possible we want to be able to optimize, video is something<br>
which can be handled by a specialized processor.<br>
javascript which causes the page to reflow because the author did<br>
something &#39;strange&#39; which only effects my small device and didn&#39;t<br>
appear when he tested it on something else, otoh isn&#39;t something i can<br>
specialize. other than turning it off, and if i do that, people<br>
complain my product is broken.<br>
<br>
they also say my device sucks when the battery life doesn&#39;t match<br>
their expectations.<br>
<br>
sadly, customers are valuable.<br>
<br>
if the embedders (and antti clearly represents one, and I represent<br>
another) express clearly that they don&#39;t want something, it&#39;s probably<br>
a good idea to listen.<br>
<br>
while it&#39;s true that you could write code which checked a counter and<br>
only did work on the nth iteration, it&#39;s unlikely that you would. such<br>
counters are also likely to be calibrated for the wrong type of device<br>
meaning you get other problems - perhaps the progress bar doesn&#39;t<br>
update often enough on slower devices, and not because the event<br>
wasn&#39;t sent often enough but because it was filtered by the page.<br>
<div class="Ih2E3d"><br>
On Tue, Nov 18, 2008 at 1:19 AM, Robert O&#39;Callahan &lt;<a href="mailto:robert@ocallahan.org">robert@ocallahan.org</a>&gt; wrote:<br>
&gt; That makes a lot more sense than limiting the timeupdate period.<br>
&gt; Firing timeupdate on discontinuous changes and requiring apps<br>
&gt; to also use a regular timer to get periodic updates sounds reasonable to me.<br>
<br>
</div>this sounds good to me too.<br>
</blockquote></div><br>After reading more feedback, I&#39;m agreeing with you, but note that my original point wasn&#39;t against what you were saying anyway.&nbsp; ^_^&nbsp; It was just disputing that a counter-based js loop would kill performance.<br>
<br>Noted, though, that many people will, without thinking, just update on every tick rather than figuring out what a significant interval to use is, and that the potential differences in tick speed (4Hz to 66Hz right now, right?&nbsp; somewhere around there?) mean that you *can&#39;t* just run a simple counter and update every nth tick.&nbsp; You&#39;ll still have to do some time comparisons.<br>
<br>~TJ<br>