- From: poot <cvsmail@w3.org>
- Date: Wed, 25 Jan 2012 17:51:15 -0500
- To: public-html-diffs@w3.org
2Dapi; hixie: s/raised/thrown/ for consistency with DOM Core (whatwg r6916) http://dev.w3.org/cvsweb/html5/2dcontext/Overview.html?r1=1.115&r2=1.116&f=h http://html5.org/tools/web-apps-tracker?from=6915&to=6916 =================================================================== RCS file: /sources/public/html5/2dcontext/Overview.html,v retrieving revision 1.115 retrieving revision 1.116 diff -u -d -r1.115 -r1.116 --- Overview.html 24 Jan 2012 20:35:40 -0000 1.115 +++ Overview.html 25 Jan 2012 22:51:07 -0000 1.116 @@ -320,7 +320,7 @@ <h1>HTML Canvas 2D Context</h1> <h2 class="no-num no-toc" id="generatedID"></h2> - <h2 class="no-num no-toc" id="editor-s-draft-24-january-2012">Editor's Draft 24 January 2012</h2> + <h2 class="no-num no-toc" id="editor-s-draft-25-january-2012">Editor's Draft 25 January 2012</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/2dcontext/">http://www.w3.org/TR/2dcontext/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -456,7 +456,7 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 24 January 2012 Editor's Draft. + This specification is the 25 January 2012 Editor's Draft. </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This specification is an extension to the HTML5 language. All @@ -1085,9 +1085,9 @@ method on the <code><a href="#canvasgradient">CanvasGradient</a></code> interface adds a new stop to a gradient. If the <var title="">offset</var> is less than 0, greater than 1, infinite, or NaN, then an - <code>IndexSizeError</code> exception must be raised. If the <var title="">color</var> cannot be <span>parsed as a CSS <color> + <code>IndexSizeError</code> exception must be thrown. If the <var title="">color</var> cannot be <span>parsed as a CSS <color> value</span>, then a <code>SyntaxError</code> exception must be - raised. Otherwise, the gradient must have a new stop placed, at + thrown. Otherwise, the gradient must have a new stop placed, at offset <var title="">offset</var> relative to the whole gradient, and with the color obtained by parsing <var title="">color</var> as a CSS <color> value. If multiple stops are added at the same @@ -1122,9 +1122,9 @@ with origin (<var title="">x1</var>, <var title="">y1</var>) and radius <var title="">r1</var>. The values are in coordinate space units. If any of the arguments are infinite or NaN, a - <code>NotSupportedError</code> exception must be raised. If either + <code>NotSupportedError</code> exception must be thrown. If either of <var title="">r0</var> or <var title="">r1</var> are negative, an - <code>IndexSizeError</code> exception must be raised. Otherwise, + <code>IndexSizeError</code> exception must be thrown. Otherwise, the method must return a radial <code><a href="#canvasgradient">CanvasGradient</a></code> initialized with the two specified circles.</p> @@ -2771,7 +2771,7 @@ have the values 0, 0, the <code title="dom-imagedata-width"><a href="#dom-imagedata-width">width</a></code> member of the <var title="">imagedata</var> structure, and the <code title="dom-imagedata-height"><a href="#dom-imagedata-height">height</a></code> member of the <var title="">imagedata</var> structure, respectively.</p> <p>When invoked with arguments that do not, per the last few - paragraphs, cause an exception to be raised, the <code title="dom-context-2d-putImageData"><a href="#dom-context-2d-putimagedata">putImageData()</a></code> method + paragraphs, cause an exception to be thrown, the <code title="dom-context-2d-putImageData"><a href="#dom-context-2d-putimagedata">putImageData()</a></code> method must act as follows:</p> <ol><li>
Received on Wednesday, 25 January 2012 22:51:17 UTC