Skip to content

Commit

Permalink
Mention case folding in a couple of places
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@55 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 19, 2006
1 parent 38d25c8 commit 56fec83
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
7 changes: 6 additions & 1 deletion index
Expand Up @@ -15846,6 +15846,10 @@ interface <dfn id="imagedata">ImageData</dfn> {
use this syntax.
</dl>

<p>These values are all case-sensitive &mdash; they must be used exactly as
shown. User agents must only recognise values that exactly match the
values given above.

<p>On setting, if the user agent does not recognise the specified value, it
must be ignored, leaving the value of <code><a
href="#globalcompositeoperation">globalCompositeOperation</a></code>
Expand Down Expand Up @@ -15986,7 +15990,8 @@ interface <dfn id="imagedata">ImageData</dfn> {
<code>repeat-y</code>, <code>no-repeat</code>. If the empty string or null
is specified, <code>repeat</code> is assumed. If an unrecognised value is
given, then the user agent must raise a <code>SYNTAX_ERR</code> exception.
The method returns a <code><a
User agents must recognise the four values described above exactly (e.g.
they must not do case folding). The method returns a <code><a
href="#canvaspattern0">CanvasPattern</a></code> object suitably
initialised.

Expand Down
10 changes: 8 additions & 2 deletions source
Expand Up @@ -13908,6 +13908,10 @@ interface <dfn>ImageData</dfn> {

</dl>

<p>These values are all case-sensitive &mdash; they must be used
exactly as shown. User agents must only recognise values that
exactly match the values given above.</p>

<p>On setting, if the user agent does not recognise the specified
value, it must be ignored, leaving the value of
<code>globalCompositeOperation</code> unaffected.</p>
Expand Down Expand Up @@ -14045,8 +14049,10 @@ interface <dfn>ImageData</dfn> {
<code>repeat-x</code>, <code>repeat-y</code>,
<code>no-repeat</code>. If the empty string or null is specified,
<code>repeat</code> is assumed. If an unrecognised value is given,
then the user agent must raise a <code>SYNTAX_ERR</code> exception.
The method returns a <code>CanvasPattern</code> object suitably
then the user agent must raise a <code>SYNTAX_ERR</code>
exception. User agents must recognise the four values described
above exactly (e.g. they must not do case folding). The method
returns a <code>CanvasPattern</code> object suitably
initialised.</p>

<p>The <var title="">image</var> argument must be an instance of an
Expand Down

0 comments on commit 56fec83

Please sign in to comment.