html5/2dcontext Overview.html,1.75,1.76

Update of /sources/public/html5/2dcontext
In directory hutz:/tmp/cvs-serv7404

Modified Files:
	Overview.html 
Log Message:
Change how canvas blur is calculated to be less quirky. Please update your browsers accordingly. This affects all implementations. (whatwg r5538)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/2dcontext/Overview.html,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- Overview.html	26 Sep 2010 16:44:10 -0000	1.75
+++ Overview.html	28 Sep 2010 23:16:53 -0000	1.76
@@ -313,7 +313,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-26-september-2010">Editor's Draft 26 September 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-28-september-2010">Editor's Draft 28 September 2010</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>
@@ -408,7 +408,7 @@
   Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation
   track.
-  This specification is the 26 September 2010 Editor's Draft.
+  This specification is the 28 September 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><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 --><!-- context and rationale (required) --><!-- (this text is from the RDFa+HTML spec --><p>This specification is an extension to the HTML5 language. All
@@ -1565,11 +1565,8 @@
    <li> <p>If <code title="dom-context-2d-shadowBlur"><a href="#dom-context-2d-shadowblur">shadowBlur</a></code> is greater than
    0:</p>
 
-    <ol><li> <p>If <code title="dom-context-2d-shadowBlur"><a href="#dom-context-2d-shadowblur">shadowBlur</a></code> is less than
-     8, let <var title="">&sigma;</var> be half the value of <code title="dom-context-2d-shadowBlur"><a href="#dom-context-2d-shadowblur">shadowBlur</a></code>; otherwise,
-     let <var title="">&sigma;</var> be the square root of multiplying
-     the value of <code title="dom-context-2d-shadowBlur"><a href="#dom-context-2d-shadowblur">shadowBlur</a></code> by
-     2.</li>
+    <ol><li> <p>Let <var title="">&sigma;</var> be half the value of
+     <code title="dom-context-2d-shadowBlur"><a href="#dom-context-2d-shadowblur">shadowBlur</a></code>.</li>
 
      <li> <p>Perform a 2D Gaussian Blur on <var title="">B</var>,
      using <var title="">&sigma;</var> as the standard deviation.</p>

Received on Tuesday, 28 September 2010 23:16:57 UTC