Skip to content

Commit

Permalink
[e] (0) fix example
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9560

git-svn-id: http://svn.whatwg.org/webapps@5351 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 25, 2010
1 parent b06f6f9 commit df5344f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -59748,8 +59748,8 @@ <h4 id=the-history-interface><span class=secno>6.4.2 </span>The <code><a href=#h
&lt;title&gt;Line Game - 5&lt;/title&gt;
&lt;p&gt;You are at coordinate &lt;span id="coord"&gt;5&lt;/span&gt; on the line.&lt;/p&gt;
&lt;p&gt;
&lt;a href="?x=6" onclick="go(1)"&gt;Advance to 6&lt;/a&gt; or
&lt;a href="?x=4" onclick="go(-1)"&gt;retreat to 4&lt;/a&gt;?
&lt;a href="?x=6" onclick="go(1); return false;"&gt;Advance to 6&lt;/a&gt; or
&lt;a href="?x=4" onclick="go(-1); return false;"&gt;retreat to 4&lt;/a&gt;?
&lt;/p&gt;
&lt;script&gt;
var currentPage = 5; // prefilled by server
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -59673,8 +59673,8 @@ x === this; // true</pre>
&lt;title&gt;Line Game - 5&lt;/title&gt;
&lt;p&gt;You are at coordinate &lt;span id="coord"&gt;5&lt;/span&gt; on the line.&lt;/p&gt;
&lt;p&gt;
&lt;a href="?x=6" onclick="go(1)"&gt;Advance to 6&lt;/a&gt; or
&lt;a href="?x=4" onclick="go(-1)"&gt;retreat to 4&lt;/a&gt;?
&lt;a href="?x=6" onclick="go(1); return false;"&gt;Advance to 6&lt;/a&gt; or
&lt;a href="?x=4" onclick="go(-1); return false;"&gt;retreat to 4&lt;/a&gt;?
&lt;/p&gt;
&lt;script&gt;
var currentPage = 5; // prefilled by server
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -67456,8 +67456,8 @@ x === this; // true</pre>
&lt;title>Line Game - 5&lt;/title>
&lt;p>You are at coordinate &lt;span id="coord">5&lt;/span> on the line.&lt;/p>
&lt;p>
&lt;a href="?x=6" onclick="go(1)">Advance to 6&lt;/a> or
&lt;a href="?x=4" onclick="go(-1)">retreat to 4&lt;/a>?
&lt;a href="?x=6" onclick="go(1); return false;">Advance to 6&lt;/a> or
&lt;a href="?x=4" onclick="go(-1); return false;">retreat to 4&lt;/a>?
&lt;/p>
&lt;script>
var currentPage = 5; // prefilled by server
Expand Down

0 comments on commit df5344f

Please sign in to comment.