[html5] r7687 - [e] (0) Fix some typos or copypasta. Affected topics: Canvas, Workers

whatwg at whatwg.org whatwg at whatwg.org
Thu Jan 31 22:06:22 PST 2013


Author: ianh
Date: 2013-01-31 22:06:21 -0800 (Thu, 31 Jan 2013)
New Revision: 7687

Modified:
   complete.html
   index
   source
Log:
[e] (0) Fix some typos or copypasta.
Affected topics: Canvas, Workers

Modified: complete.html
===================================================================
--- complete.html	2013-02-01 02:49:39 UTC (rev 7686)
+++ complete.html	2013-02-01 06:06:21 UTC (rev 7687)
@@ -34503,7 +34503,7 @@
   event.data.setContext(context); // event.data is the CanvasProxy object
   setInterval(function () {
     context.clearRect(0, 0, context.width, context.height);
-    context.fillText(0, 100, new Date());
+    context.fillText(new Date(), 0, 100);
     context.commit();
   }, 1000);
 };</pre>

Modified: index
===================================================================
--- index	2013-02-01 02:49:39 UTC (rev 7686)
+++ index	2013-02-01 06:06:21 UTC (rev 7687)
@@ -34503,7 +34503,7 @@
   event.data.setContext(context); // event.data is the CanvasProxy object
   setInterval(function () {
     context.clearRect(0, 0, context.width, context.height);
-    context.fillText(0, 100, new Date());
+    context.fillText(new Date(), 0, 100);
     context.commit();
   }, 1000);
 };</pre>

Modified: source
===================================================================
--- source	2013-02-01 02:49:39 UTC (rev 7686)
+++ source	2013-02-01 06:06:21 UTC (rev 7687)
@@ -40258,7 +40258,7 @@
   event.data.setContext(context); // event.data is the CanvasProxy object
   setInterval(function () {
     context.clearRect(0, 0, context.width, context.height);
-    context.fillText(0, 100, new Date());
+    context.fillText(new Date(), 0, 100);
     context.commit();
   }, 1000);
 };</pre>




More information about the Commit-Watchers mailing list