Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) cross-refs
git-svn-id: http://svn.whatwg.org/webapps@2657 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Jan 13, 2009
1 parent 99d80ce commit 9d6c29e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
14 changes: 7 additions & 7 deletions index
Expand Up @@ -19599,7 +19599,7 @@ interface <dfn id=imagedata>ImageData</dfn> {
readonly attribute <a href=#canvaspixelarray>CanvasPixelArray</a> <a href=#dom-imagedata-data title=dom-imagedata-data>data</a>;
};

[IndexGetter, IndexSetter]
[<a href=#dom-canvaspixelarray-get title=dom-CanvasPixelArray-get>IndexGetter</a>, <a href=#dom-canvaspixelarray-set title=dom-CanvasPixelArray-set>IndexSetter</a>]
interface <dfn id=canvaspixelarray>CanvasPixelArray</dfn> {
readonly attribute unsigned long <a href=#dom-canvaspixelarray-length title=dom-canvaspixelarray-length>length</a>;
};</pre>
Expand Down Expand Up @@ -21112,13 +21112,13 @@ XXXDVT (also check for '- -' bits in the part above) --><p>The <dfn id=dom-conte
<p>The object's <span>indices of the supported indexed
properties</span> are the numbers in the range 0 .. <span><var title="">h</var>&times;<var title="">w</var>&times;4-1</span>.</p>

<p>When a <code><a href=#canvaspixelarray>CanvasPixelArray</a></code> object is indexed to
retrieve an indexed property <var title="">index</var>, the value
returned must be the value of the <var title="">index</var>th
component in the array.</p>
<p>When a <code><a href=#canvaspixelarray>CanvasPixelArray</a></code> object is <dfn id=dom-canvaspixelarray-get title=dom-CanvasPixelArray-get>indexed to retrieve an indexed
property</dfn> <var title="">index</var>, the value returned must be
the value of the <var title="">index</var>th component in the
array.</p>

<p>When a <code><a href=#canvaspixelarray>CanvasPixelArray</a></code> object is indexed to modify
an indexed property <var title="">index</var> with value <var title="">value</var>, the value of the <var title="">index</var>th
<p>When a <code><a href=#canvaspixelarray>CanvasPixelArray</a></code> object is <dfn id=dom-canvaspixelarray-set title=dom-CanvasPixelArray-set>indexed to modify an indexed
property</dfn> <var title="">index</var> with value <var title="">value</var>, the value of the <var title="">index</var>th
component in the array must be set to <var title="">value</var>. JS
<code>undefined</code> values must be converted to zero. Other
values must first be converted to numbers using JavaScript's
Expand Down
16 changes: 9 additions & 7 deletions source
Expand Up @@ -21288,7 +21288,7 @@ interface <dfn>ImageData</dfn> {
readonly attribute <span>CanvasPixelArray</span> <span title="dom-imagedata-data">data</span>;
};

[IndexGetter, IndexSetter]
[<span title="dom-CanvasPixelArray-get">IndexGetter</span>, <span title="dom-CanvasPixelArray-set">IndexSetter</span>]
interface <dfn>CanvasPixelArray</dfn> {
readonly attribute unsigned long <span title="dom-canvaspixelarray-length">length</span>;
};</pre>
Expand Down Expand Up @@ -23166,13 +23166,15 @@ XXXDVT (also check for '- -' bits in the part above) -->
properties</span> are the numbers in the range 0 .. <span><var
title="">h</var>&times;<var title="">w</var>&times;4-1</span>.</p>

<p>When a <code>CanvasPixelArray</code> object is indexed to
retrieve an indexed property <var title="">index</var>, the value
returned must be the value of the <var title="">index</var>th
component in the array.</p>
<p>When a <code>CanvasPixelArray</code> object is <dfn
title="dom-CanvasPixelArray-get">indexed to retrieve an indexed
property</dfn> <var title="">index</var>, the value returned must be
the value of the <var title="">index</var>th component in the
array.</p>

<p>When a <code>CanvasPixelArray</code> object is indexed to modify
an indexed property <var title="">index</var> with value <var
<p>When a <code>CanvasPixelArray</code> object is <dfn
title="dom-CanvasPixelArray-set">indexed to modify an indexed
property</dfn> <var title="">index</var> with value <var
title="">value</var>, the value of the <var title="">index</var>th
component in the array must be set to <var title="">value</var>. JS
<code>undefined</code> values must be converted to zero. Other
Expand Down

0 comments on commit 9d6c29e

Please sign in to comment.