Skip to content

Commit

Permalink
[gow] (2) Oops, height and width of <canvas> should be unsigned.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@808 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 11, 2007
1 parent 4469c15 commit 9e73efd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -15348,8 +15348,8 @@ brighter. A &lt;b>rat&lt;/b> scurries past the corner wall.&lt;/p></pre>
<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);
Expand Down
4 changes: 2 additions & 2 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -12930,8 +12930,8 @@ brighter. A &lt;b>rat&lt;/b> scurries past the corner wall.&lt;/p></pre>
<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);
Expand Down

0 comments on commit 9e73efd

Please sign in to comment.