Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) bug in example
git-svn-id: http://svn.whatwg.org/webapps@6129 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 12, 2011
1 parent 5777b55 commit 3fbd573
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions complete.html
Expand Up @@ -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 &mdash; Last Updated 11 May 2011</h2>
<h2 class="no-num no-toc">Living Standard &mdash; 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>-->
Expand Down Expand Up @@ -79497,7 +79497,7 @@ <h3 id=introduction-13><span class=secno>12.1 </span>Introduction</h3>
&lt;script&gt;
if (!localStorage.pageLoadCount)
localStorage.pageLoadCount = 0;
localStorage.pageLoadCount += 1;
localStorage.pageLoadCount = parseInt(localStorage.pageLoadCount) + 1;
document.getElementById('count').textContent = localStorage.pageLoadCount;
&lt;/script&gt;</pre>

Expand Down Expand Up @@ -98711,6 +98711,7 @@ <h3 class="no-num">Reflecting IDL attributes</h3>
Andreas Kling,
Andrei Popescu,
Andr&eacute; E. Veltstra,
Andrew Barfield,
Andrew Clover,
Andrew Gove,
Andrew Grieve,
Expand Down
3 changes: 2 additions & 1 deletion index
Expand Up @@ -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 &mdash; Last Updated 11 May 2011</h2>
<h2 class="no-num no-toc">Living Standard &mdash; 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>-->
Expand Down Expand Up @@ -94852,6 +94852,7 @@ interface <a href=#htmldocument>HTMLDocument</a> {
Andreas Kling,
Andrei Popescu,
Andr&eacute; E. Veltstra,
Andrew Barfield,
Andrew Clover,
Andrew Gove,
Andrew Grieve,
Expand Down
3 changes: 2 additions & 1 deletion source
Expand Up @@ -90206,7 +90206,7 @@ interface <dfn>MessagePort</dfn> {
&lt;script>
if (!localStorage.pageLoadCount)
localStorage.pageLoadCount = 0;
localStorage.pageLoadCount += 1;
localStorage.pageLoadCount = parseInt(localStorage.pageLoadCount) + 1;
document.getElementById('count').textContent = localStorage.pageLoadCount;
&lt;/script></pre>

Expand Down Expand Up @@ -112727,6 +112727,7 @@ interface <span>HTMLDocument</span> {
Andreas Kling,
Andrei Popescu,
Andr&eacute; E. Veltstra,
Andrew Barfield,
Andrew Clover,
Andrew Gove,
Andrew Grieve,
Expand Down

0 comments on commit 3fbd573

Please sign in to comment.