html5/spec Overview.html,1.4267,1.4268

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv2191

Modified Files:
	Overview.html 
Log Message:
fix example (whatwg r5351)

Index: Overview.html
===================================================================
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:34:23 UTC