Skip to content

Commit

Permalink
[e] (0) Mention what <area shape=default> covers. (credit: bb)
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@2118 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 28, 2008
1 parent 7f73af1 commit cb9ef9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index
Expand Up @@ -28,7 +28,7 @@

<h1 id=html-5>HTML 5</h1>

<h2 class="no-num no-toc" id=draft>Draft Recommendation &mdash; 27 August
<h2 class="no-num no-toc" id=draft>Draft Recommendation &mdash; 28 August
2008</h2>

<p>You can take part in this work. <a
Expand Down Expand Up @@ -23695,7 +23695,7 @@ function AddCloud(data, x, y) { ... }</pre>
var input = context.getImageData(0, 0, canvas.width, canvas.height);

// get an empty slate to put the data into
var output = context.crateImageData(canvas.width, canvas.height);
var output = context.createImageData(canvas.width, canvas.height);

// alias some variables for convenience
// notice that we are using input.width and input.height here
Expand Down Expand Up @@ -24141,7 +24141,7 @@ function AddCloud(data, x, y) { ... }</pre>
<p>In the <dfn id=default1 title=attr-area-shape-default>default
state</dfn> state, <code><a href="#area">area</a></code> elements must not
have a <code title=attr-area-coords><a href="#coords">coords</a></code>
attribute.
attribute. (The area is the whole image.)

<p>In the <dfn id=polygon0 title=attr-area-shape-poly>polygon state</dfn>,
<code><a href="#area">area</a></code> elements must have a <code
Expand Down
5 changes: 3 additions & 2 deletions source
Expand Up @@ -20976,7 +20976,7 @@ function AddCloud(data, x, y) { ... }</pre>
var input = context.getImageData(0, 0, canvas.width, canvas.height);

// get an empty slate to put the data into
var output = context.crateImageData(canvas.width, canvas.height);
var output = context.createImageData(canvas.width, canvas.height);

// alias some variables for convenience
// notice that we are using input.width and input.height here
Expand Down Expand Up @@ -21361,7 +21361,8 @@ function AddCloud(data, x, y) { ... }</pre>

<p>In the <dfn title="attr-area-shape-default">default state</dfn>
state, <code>area</code> elements must not have a <code
title="attr-area-coords">coords</code> attribute.</p>
title="attr-area-coords">coords</code> attribute. (The area is the
whole image.)</p>

<p>In the <dfn title="attr-area-shape-poly">polygon state</dfn>,
<code>area</code> elements must have a <code
Expand Down

0 comments on commit cb9ef9f

Please sign in to comment.