[html5] r808 - /
whatwg at whatwg.org
whatwg at whatwg.org
Fri May 11 16:16:20 PDT 2007
Author: ianh
Date: 2007-05-11 16:16:18 -0700 (Fri, 11 May 2007)
New Revision: 808
Modified:
index
source
Log:
[gow] (2) Oops, height and width of <canvas> should be unsigned.
Modified: index
===================================================================
--- index 2007-05-11 23:07:32 UTC (rev 807)
+++ index 2007-05-11 23:16:18 UTC (rev 808)
@@ -15348,8 +15348,8 @@
<dd>
<pre
class=idl>interface <dfn id=htmlcanvaselement>HTMLCanvasElement</dfn> : <a href="#htmlelement">HTMLElement</a> {
- attribute long <a href="#width4" title=dom-canvas-width>width</a>;
- attribute long <a href="#height4" title=dom-canvas-height>height</a>;
+ attribute unsigned long <a href="#width4" title=dom-canvas-width>width</a>;
+ attribute unsigned long <a href="#height4" title=dom-canvas-height>height</a>;
DOMString <a href="#todataurl" title=dom-canvas-toDataURL>toDataURL()</a>;
DOMString <a href="#todataurl0" title=dom-canvas-toDataURL-type>toDataURL</a>(in DOMString type);
Modified: source
===================================================================
--- source 2007-05-11 23:07:32 UTC (rev 807)
+++ source 2007-05-11 23:16:18 UTC (rev 808)
@@ -12930,8 +12930,8 @@
<dt>DOM interface:</dt>
<dd>
<pre class="idl">interface <dfn>HTMLCanvasElement</dfn> : <span>HTMLElement</span> {
- attribute long <span title="dom-canvas-width">width</span>;
- attribute long <span title="dom-canvas-height">height</span>;
+ attribute unsigned long <span title="dom-canvas-width">width</span>;
+ attribute unsigned long <span title="dom-canvas-height">height</span>;
DOMString <span title="dom-canvas-toDataURL">toDataURL()</span>;
DOMString <span title="dom-canvas-toDataURL-type">toDataURL</span>(in DOMString type);
More information about the Commit-Watchers
mailing list