[html5] r6471 - [e] (0) typo Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12931

whatwg at whatwg.org whatwg at whatwg.org
Mon Aug 15 21:29:24 PDT 2011


Author: ianh
Date: 2011-08-15 21:29:22 -0700 (Mon, 15 Aug 2011)
New Revision: 6471

Modified:
   complete.html
   index
   source
Log:
[e] (0) typo
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12931

Modified: complete.html
===================================================================
--- complete.html	2011-08-16 04:20:30 UTC (rev 6470)
+++ complete.html	2011-08-16 04:29:22 UTC (rev 6471)
@@ -67590,7 +67590,7 @@
   <title>Online status</title>
   <script>
    function updateIndicator() {
-     document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
+     document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
    }
   </script>
  </head>

Modified: index
===================================================================
--- index	2011-08-16 04:20:30 UTC (rev 6470)
+++ index	2011-08-16 04:29:22 UTC (rev 6471)
@@ -67472,7 +67472,7 @@
   <title>Online status</title>
   <script>
    function updateIndicator() {
-     document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
+     document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
    }
   </script>
  </head>

Modified: source
===================================================================
--- source	2011-08-16 04:20:30 UTC (rev 6470)
+++ source	2011-08-16 04:29:22 UTC (rev 6471)
@@ -76836,7 +76836,7 @@
   <title>Online status</title>
   <script>
    function updateIndicator() {
-     document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
+     document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
    }
   </script>
  </head>




More information about the Commit-Watchers mailing list