[html5] r6129 - [e] (0) bug in example
whatwg at whatwg.org
whatwg at whatwg.org
Wed May 11 20:30:50 PDT 2011
Author: ianh
Date: 2011-05-11 20:30:48 -0700 (Wed, 11 May 2011)
New Revision: 6129
Modified:
complete.html
index
source
Log:
[e] (0) bug in example
Modified: complete.html
===================================================================
--- complete.html 2011-05-11 21:46:46 UTC (rev 6128)
+++ complete.html 2011-05-12 03:30:48 UTC (rev 6129)
@@ -239,7 +239,7 @@
<header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1>Web Applications 1.0</h1>
- <h2 class="no-num no-toc">Living Standard — Last Updated 11 May 2011</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 12 May 2011</h2>
</hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -79497,7 +79497,7 @@
<script>
if (!localStorage.pageLoadCount)
localStorage.pageLoadCount = 0;
- localStorage.pageLoadCount += 1;
+ localStorage.pageLoadCount = parseInt(localStorage.pageLoadCount) + 1;
document.getElementById('count').textContent = localStorage.pageLoadCount;
</script></pre>
@@ -98711,6 +98711,7 @@
Andreas Kling,
Andrei Popescu,
André E. Veltstra,
+ Andrew Barfield,
Andrew Clover,
Andrew Gove,
Andrew Grieve,
Modified: index
===================================================================
--- index 2011-05-11 21:46:46 UTC (rev 6128)
+++ index 2011-05-12 03:30:48 UTC (rev 6129)
@@ -243,7 +243,7 @@
<header class=head id=head><p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG height=101 src=/images/logo width=101></a></p>
<hgroup><h1 class=allcaps>HTML</h1>
- <h2 class="no-num no-toc">Living Standard — Last Updated 11 May 2011</h2>
+ <h2 class="no-num no-toc">Living Standard — Last Updated 12 May 2011</h2>
</hgroup><p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -94852,6 +94852,7 @@
Andreas Kling,
Andrei Popescu,
André E. Veltstra,
+ Andrew Barfield,
Andrew Clover,
Andrew Gove,
Andrew Grieve,
Modified: source
===================================================================
--- source 2011-05-11 21:46:46 UTC (rev 6128)
+++ source 2011-05-12 03:30:48 UTC (rev 6129)
@@ -90206,7 +90206,7 @@
<script>
if (!localStorage.pageLoadCount)
localStorage.pageLoadCount = 0;
- localStorage.pageLoadCount += 1;
+ localStorage.pageLoadCount = parseInt(localStorage.pageLoadCount) + 1;
document.getElementById('count').textContent = localStorage.pageLoadCount;
</script></pre>
@@ -112727,6 +112727,7 @@
Andreas Kling,
Andrei Popescu,
André E. Veltstra,
+ Andrew Barfield,
Andrew Clover,
Andrew Gove,
Andrew Grieve,
More information about the Commit-Watchers
mailing list