hixie: fix example (whatwg r5351)

hixie: fix example (whatwg r5351)

http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.4267&r2=1.4268&f=h
http://html5.org/tools/web-apps-tracker?from=5350&to=5351

===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.4267
retrieving revision 1.4268
diff -u -d -r1.4267 -r1.4268
--- Overview.html 25 Aug 2010 23:09:27 -0000 1.4267
+++ Overview.html 25 Aug 2010 23:34:17 -0000 1.4268
@@ -42794,8 +42794,8 @@
 <title>Line Game - 5</title>
 <p>You are at coordinate <span id="coord">5</span> on the line.</p>
 <p>
- <a href="?x=6" onclick="go(1)">Advance to 6</a> or
- <a href="?x=4" onclick="go(-1)">retreat to 4</a>?
+ <a href="?x=6" onclick="go(1); return false;">Advance to 6</a> or
+ <a href="?x=4" onclick="go(-1); return false;">retreat to 4</a>?
 </p>
 <script>
  var currentPage = 5; // prefilled by server

Received on Wednesday, 25 August 2010 23:35:09 UTC