- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 05 Jan 2010 08:17:23 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv30330
Modified Files:
Overview.html spec.html text-level-semantics.html
Log Message:
typo (whatwg r4480)
[updated by splitter]
Index: text-level-semantics.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/text-level-semantics.html,v
retrieving revision 1.554
retrieving revision 1.555
diff -u -d -r1.554 -r1.555
--- text-level-semantics.html 4 Jan 2010 23:47:19 -0000 1.554
+++ text-level-semantics.html 5 Jan 2010 08:17:21 -0000 1.555
@@ -1474,7 +1474,7 @@
var progressBar = document.getElementById('p');
function updateProgress(newValue) {
progressBar.value = newValue;
- progressBar.getElementsByTagName('span').textContent = newValue;
+ progressBar.getElementsByTagName('span')[0].textContent = newValue;
}
</script>
</section></pre>
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.575
retrieving revision 1.576
diff -u -d -r1.575 -r1.576
--- Overview.html 5 Jan 2010 07:57:02 -0000 1.575
+++ Overview.html 5 Jan 2010 08:17:20 -0000 1.576
@@ -281,7 +281,7 @@
</dl><p>This specification is available in the following formats:
<a href="spec.html">single page HTML</a>,
<a href="Overview.html">multipage HTML</a>.
-This is revision 1.3577.
+This is revision 1.3580.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2009 <a href="http://www.w3.org/"><abbr title="World Wide
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.580
retrieving revision 1.581
diff -u -d -r1.580 -r1.581
--- spec.html 5 Jan 2010 07:57:02 -0000 1.580
+++ spec.html 5 Jan 2010 08:17:20 -0000 1.581
@@ -279,7 +279,7 @@
</dl><p>This specification is available in the following formats:
<a href=spec.html>single page HTML</a>,
<a href=Overview.html>multipage HTML</a>.
-This is revision 1.3577.
+This is revision 1.3580.
</p>
<p class=copyright><a href=http://www.w3.org/Consortium/Legal/ipr-notice#Copyright>Copyright</a>
© 2009 <a href=http://www.w3.org/><abbr title="World Wide
@@ -8310,7 +8310,7 @@
var progressBar = document.getElementById('p');
function updateProgress(newValue) {
progressBar.value = newValue;
- progressBar.getElementsByTagName('span').textContent = newValue;
+ progressBar.getElementsByTagName('span')[0].textContent = newValue;
}
</script>
</section></pre>
Received on Tuesday, 5 January 2010 08:17:24 UTC