[html5] r5351 - [e] (0) fix example Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9560
whatwg at whatwg.org
whatwg at whatwg.org
Wed Aug 25 16:34:14 PDT 2010
Author: ianh
Date: 2010-08-25 16:34:13 -0700 (Wed, 25 Aug 2010)
New Revision: 5351
Modified:
complete.html
index
source
Log:
[e] (0) fix example
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9560
Modified: complete.html
===================================================================
--- complete.html 2010-08-25 23:09:23 UTC (rev 5350)
+++ complete.html 2010-08-25 23:34:13 UTC (rev 5351)
@@ -59748,8 +59748,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
Modified: index
===================================================================
--- index 2010-08-25 23:09:23 UTC (rev 5350)
+++ index 2010-08-25 23:34:13 UTC (rev 5351)
@@ -59673,8 +59673,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
Modified: source
===================================================================
--- source 2010-08-25 23:09:23 UTC (rev 5350)
+++ source 2010-08-25 23:34:13 UTC (rev 5351)
@@ -67456,8 +67456,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
More information about the Commit-Watchers
mailing list