Skip to content

Commit

Permalink
[ac] (0) Allow the dimension attributes to be set to zero. (credit: s…
Browse files Browse the repository at this point in the history
…p) (bug 6544)

git-svn-id: http://svn.whatwg.org/webapps@2943 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Apr 1, 2009
1 parent ace4ab9 commit 3a849a3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
18 changes: 14 additions & 4 deletions index
Expand Up @@ -39,7 +39,7 @@
<div class=head>
<p><a class=logo href=http://www.whatwg.org/ rel=home><img alt=WHATWG src=/images/logo></a></p>
<h1>HTML 5</h1>
<h2 class="no-num no-toc" id=draft-recommendation-&mdash;-date:-01-jan-1901>Draft Recommendation &mdash; 31 March 2009</h2>
<h2 class="no-num no-toc" id=draft-recommendation-&mdash;-date:-01-jan-1901>Draft Recommendation &mdash; 1 April 2009</h2>
<p>You can take part in this work. <a href=http://www.whatwg.org/mailing-list>Join the working group's discussion list.</a></p>
<p><strong>Web designers!</strong> We have a <a href=http://blog.whatwg.org/faq/>FAQ</a>, a <a href=http://forums.whatwg.org/>forum</a>, and a <a href=http://www.whatwg.org/mailing-list#help>help mailing list</a> for you!</p>
<dl><dt>Multiple-page version:</dt>
Expand Down Expand Up @@ -17739,6 +17739,10 @@ href="?audio"&gt;audio&lt;/a&gt; test instead.)&lt;/p&gt;</pre>
views, then the <code title=attr-img-alt><a href=#attr-img-alt>alt</a></code> attribute must
be the empty string.</p>

<p>In such cases, the <code title=attr-dim-width><a href=#attr-dim-width>width</a></code> and
<code title=attr-dim-height><a href=#attr-dim-height>height</a></code> attributes should both
be set to zero.</p>



<h6 id=an-image-in-an-e-mail-or-document-intended-for-a-specific-person-who-is-known-to-be-able-to-view-images><span class=secno>4.8.2.1.11 </span>An image in an e-mail or document intended for a specific person who is known to be able to view images</h6>
Expand Down Expand Up @@ -25214,7 +25218,7 @@ function AddCloud(data, x, y) { ... }</pre>
respectively, relative to the nominal direction of the output
medium), in CSS pixels. The attributes, if specified, must have
values that are <a href=#valid-non-negative-integer title="valid non-negative integer">valid
non-negative integers</a> greater than zero.</p>
non-negative integers</a>.</p>

<p>The specified dimensions given may differ from the dimensions
specified in the resource itself, since the resource may have a
Expand All @@ -25231,15 +25235,21 @@ function AddCloud(data, x, y) { ... }</pre>
<var title="">specified width</var> / <var title="">target ratio</var> &le;
<var title="">specified height</var> + 0.5</span></li>

<li><span title=""><var title="">specified height</var> = <var title="">specified width</var> = 0</span></li>

</ul><p>The <var title="">target ratio</var> is the ratio of the
intrinsic width to the intrinsic height in the resource. The <var title="">specified width</var> and <var title="">specified
height</var> are the values of the <code title=attr-dim-width><a href=#attr-dim-width>width</a></code> and <code title=attr-dim-height><a href=#attr-dim-height>height</a></code> attributes respectively.</p>

<p>The two attributes must be omitted if the resource in question
does not have both an intrinsic width and an intrinsic height.</p>

<p class=note>Basically, the dimension attributes can't be used to
stretch the image.</p>
<p>If the two attributes are both zero, it indicates that the
element is not intended for the user (e.g. it might be a part of a
service to count page views).</p>

<p class=note>The dimension attributes are not intended to be used
to stretch the image.</p>

<div class=impl>

Expand Down
16 changes: 13 additions & 3 deletions source
Expand Up @@ -19028,6 +19028,10 @@ href="?audio">audio&lt;/a> test instead.)&lt;/p></pre>
views, then the <code title="attr-img-alt">alt</code> attribute must
be the empty string.</p>

<p>In such cases, the <code title="attr-dim-width">width</code> and
<code title="attr-dim-height">height</code> attributes should both
be set to zero.</p>



<h6>An image in an e-mail or document intended for a specific person who is known to be able to view images</h6>
Expand Down Expand Up @@ -27876,7 +27880,7 @@ function AddCloud(data, x, y) { ... }</pre>
respectively, relative to the nominal direction of the output
medium), in CSS pixels. The attributes, if specified, must have
values that are <span title="valid non-negative integer">valid
non-negative integers</span> greater than zero.</p>
non-negative integers</span>.</p>

<p>The specified dimensions given may differ from the dimensions
specified in the resource itself, since the resource may have a
Expand All @@ -27895,6 +27899,8 @@ function AddCloud(data, x, y) { ... }</pre>
<var title="">specified width</var> / <var title="">target ratio</var> &le;
<var title="">specified height</var> + 0.5</span></li>

<li><span title=""><var title="">specified height</var> = <var title="">specified width</var> = 0</span></li>

</ul>

<p>The <var title="">target ratio</var> is the ratio of the
Expand All @@ -27907,8 +27913,12 @@ function AddCloud(data, x, y) { ... }</pre>
<p>The two attributes must be omitted if the resource in question
does not have both an intrinsic width and an intrinsic height.</p>

<p class="note">Basically, the dimension attributes can't be used to
stretch the image.</p>
<p>If the two attributes are both zero, it indicates that the
element is not intended for the user (e.g. it might be a part of a
service to count page views).</p>

<p class="note">The dimension attributes are not intended to be used
to stretch the image.</p>

<div class="impl">

Expand Down

0 comments on commit 3a849a3

Please sign in to comment.