[html5] r6529 - [e] (0) internal note to avoid changing canvas method order in the future
whatwg at whatwg.org
whatwg at whatwg.org
Thu Aug 25 17:52:55 PDT 2011
Author: ianh
Date: 2011-08-25 17:52:53 -0700 (Thu, 25 Aug 2011)
New Revision: 6529
Modified:
complete.html
index
source
Log:
[e] (0) internal note to avoid changing canvas method order in the future
Modified: complete.html
===================================================================
--- complete.html 2011-08-26 00:43:00 UTC (rev 6528)
+++ complete.html 2011-08-26 00:52:53 UTC (rev 6529)
@@ -35381,9 +35381,9 @@
void <a href=#dom-context-2d-lineto title=dom-context-2d-lineTo>lineTo</a>(double x, double y);
void <a href=#dom-context-2d-quadraticcurveto title=dom-context-2d-quadraticCurveTo>quadraticCurveTo</a>(double cpx, double cpy, double x, double y);
void <a href=#dom-context-2d-beziercurveto title=dom-context-2d-bezierCurveTo>bezierCurveTo</a>(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y);
- void <a href=#dom-context-2d-arcto title=dom-context-2d-arcTo>arcTo</a>(double x1, double y1, double x2, double y2, double radius);
+ void <a href=#dom-context-2d-arcto title=dom-context-2d-arcTo>arcTo</a>(double x1, double y1, double x2, double y2, double radius); <!-- see ARC-ORDER note below -->
void <a href=#dom-context-2d-rect title=dom-context-2d-rect>rect</a>(double x, double y, double w, double h);
- void <a href=#dom-context-2d-arc title=dom-context-2d-arc>arc</a>(double x, double y, double radius, double startAngle, double endAngle, optional boolean anticlockwise);
+ void <a href=#dom-context-2d-arc title=dom-context-2d-arc>arc</a>(double x, double y, double radius, double startAngle, double endAngle, optional boolean anticlockwise); <!-- see ARC-ORDER note below -->
void <a href=#dom-context-2d-fill title=dom-context-2d-fill>fill</a>();
void <a href=#dom-context-2d-stroke title=dom-context-2d-stroke>stroke</a>();
void <a href=#dom-context-2d-drawsystemfocusring title=dom-context-2d-drawSystemFocusRing>drawSystemFocusRing</a>(<a href=#element>Element</a> element);
@@ -35446,6 +35446,11 @@
<a href=#dom-canvaspixelarray-set title=dom-CanvasPixelArray-set>setter</a> void (unsigned long index, [Clamp] octet value);
};</pre>
+ <!-- ARC-ORDER note (see above):
+ some demos rely on the precise order of the arc() and arcTo()
+ methods, see https://bugzilla.mozilla.org/show_bug.cgi?id=623437
+ for an example, and its duplicates for more -->
+
<dl class=domintro><dt><var title="">context</var> . <code title=dom-context-2d-canvas><a href=#dom-context-2d-canvas>canvas</a></code></dt>
<dd>
Modified: index
===================================================================
--- index 2011-08-26 00:43:00 UTC (rev 6528)
+++ index 2011-08-26 00:52:53 UTC (rev 6529)
@@ -35248,9 +35248,9 @@
void <a href=#dom-context-2d-lineto title=dom-context-2d-lineTo>lineTo</a>(double x, double y);
void <a href=#dom-context-2d-quadraticcurveto title=dom-context-2d-quadraticCurveTo>quadraticCurveTo</a>(double cpx, double cpy, double x, double y);
void <a href=#dom-context-2d-beziercurveto title=dom-context-2d-bezierCurveTo>bezierCurveTo</a>(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y);
- void <a href=#dom-context-2d-arcto title=dom-context-2d-arcTo>arcTo</a>(double x1, double y1, double x2, double y2, double radius);
+ void <a href=#dom-context-2d-arcto title=dom-context-2d-arcTo>arcTo</a>(double x1, double y1, double x2, double y2, double radius); <!-- see ARC-ORDER note below -->
void <a href=#dom-context-2d-rect title=dom-context-2d-rect>rect</a>(double x, double y, double w, double h);
- void <a href=#dom-context-2d-arc title=dom-context-2d-arc>arc</a>(double x, double y, double radius, double startAngle, double endAngle, optional boolean anticlockwise);
+ void <a href=#dom-context-2d-arc title=dom-context-2d-arc>arc</a>(double x, double y, double radius, double startAngle, double endAngle, optional boolean anticlockwise); <!-- see ARC-ORDER note below -->
void <a href=#dom-context-2d-fill title=dom-context-2d-fill>fill</a>();
void <a href=#dom-context-2d-stroke title=dom-context-2d-stroke>stroke</a>();
void <a href=#dom-context-2d-drawsystemfocusring title=dom-context-2d-drawSystemFocusRing>drawSystemFocusRing</a>(<a href=#element>Element</a> element);
@@ -35313,6 +35313,11 @@
<a href=#dom-canvaspixelarray-set title=dom-CanvasPixelArray-set>setter</a> void (unsigned long index, [Clamp] octet value);
};</pre>
+ <!-- ARC-ORDER note (see above):
+ some demos rely on the precise order of the arc() and arcTo()
+ methods, see https://bugzilla.mozilla.org/show_bug.cgi?id=623437
+ for an example, and its duplicates for more -->
+
<dl class=domintro><dt><var title="">context</var> . <code title=dom-context-2d-canvas><a href=#dom-context-2d-canvas>canvas</a></code></dt>
<dd>
Modified: source
===================================================================
--- source 2011-08-26 00:43:00 UTC (rev 6528)
+++ source 2011-08-26 00:52:53 UTC (rev 6529)
@@ -38937,9 +38937,9 @@
void <span title="dom-context-2d-lineTo">lineTo</span>(double x, double y);
void <span title="dom-context-2d-quadraticCurveTo">quadraticCurveTo</span>(double cpx, double cpy, double x, double y);
void <span title="dom-context-2d-bezierCurveTo">bezierCurveTo</span>(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y);
- void <span title="dom-context-2d-arcTo">arcTo</span>(double x1, double y1, double x2, double y2, double radius);
+ void <span title="dom-context-2d-arcTo">arcTo</span>(double x1, double y1, double x2, double y2, double radius); <!-- see ARC-ORDER note below -->
void <span title="dom-context-2d-rect">rect</span>(double x, double y, double w, double h);
- void <span title="dom-context-2d-arc">arc</span>(double x, double y, double radius, double startAngle, double endAngle, optional boolean anticlockwise);
+ void <span title="dom-context-2d-arc">arc</span>(double x, double y, double radius, double startAngle, double endAngle, optional boolean anticlockwise); <!-- see ARC-ORDER note below -->
void <span title="dom-context-2d-fill">fill</span>();
void <span title="dom-context-2d-stroke">stroke</span>();
void <span title="dom-context-2d-drawSystemFocusRing">drawSystemFocusRing</span>(<span>Element</span> element);
@@ -39002,6 +39002,11 @@
<span title="dom-CanvasPixelArray-set">setter</span> void (unsigned long index, [Clamp] octet value);
};</pre>
+ <!-- ARC-ORDER note (see above):
+ some demos rely on the precise order of the arc() and arcTo()
+ methods, see https://bugzilla.mozilla.org/show_bug.cgi?id=623437
+ for an example, and its duplicates for more -->
+
<dl class="domintro">
<dt><var title="">context</var> . <code title="dom-context-2d-canvas">canvas</code></dt>
More information about the Commit-Watchers
mailing list