- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 05 Jan 2010 08:14:19 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv29549
Modified Files:
Overview.html
Log Message:
typo (whatwg r4480)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.3579
retrieving revision 1.3580
diff -u -d -r1.3579 -r1.3580
--- Overview.html 5 Jan 2010 08:11:14 -0000 1.3579
+++ Overview.html 5 Jan 2010 08:14:16 -0000 1.3580
@@ -14979,7 +14979,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:14:21 UTC