Skip to content

Commit

Permalink
[e] (0) mention <meter> doesn't work with alt=''.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@3989 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Sep 24, 2009
1 parent f6f5b92 commit 806d693
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions index
Expand Up @@ -16465,7 +16465,7 @@ Linux demo 2.6.10-grsec+gg3+e+fhs6b+nfs+gr0501+++p3+c4a+gr2b-reslog-v6.189 #1 SM
<dt>Content attributes:</dt>
<dd><a href=#global-attributes>Global attributes</a></dd>
<dt>DOM interface:</dt>
<dd>Uses <code><a href=#htmlelement>HTMLElement</a></code>.</dd>
<dd>Use <code><a href=#htmlelement>HTMLElement</a></code>.</dd>
</dl><p>The <code><a href=#the-sub-and-sup-elements>sup</a></code> element <a href=#represents>represents</a> a
superscript and the <code><a href=#the-sub-and-sup-elements>sub</a></code> element <a href=#represents>represents</a>
a subscript.</p>
Expand Down Expand Up @@ -16631,7 +16631,7 @@ brighter. A &lt;b&gt;rat&lt;/b&gt; scurries past the corner wall.&lt;/p&gt;</pre

<div class=example>
<p>The following would be <em>incorrect</em> usage:</p>
<pre>&lt;p&gt;&lt;b&gt;WARNING!&lt;/b&gt; Do not frob the barbinator!&lt;/p&gt;</pre>
<pre class=bad>&lt;p&gt;&lt;b&gt;WARNING!&lt;/b&gt; Do not frob the barbinator!&lt;/p&gt;</pre>
<p>In the previous example, the correct element to use would have
been <code><a href=#the-strong-element>strong</a></code>, not <code><a href=#the-b-element>b</a></code>.</p>
</div>
Expand Down Expand Up @@ -17151,7 +17151,7 @@ wormhole connection.&lt;/mark&gt;&lt;/p&gt;</pre>
&lt;meter&gt;3/4&lt;/meter&gt;
&lt;meter&gt;6 blocks used (out of 8 total)&lt;/meter&gt;
&lt;meter&gt;max: 100; current: 75&lt;/meter&gt;
&lt;meter&gt;&lt;object data="graph75.png"&gt;0.75&lt;/object&gt;&lt;/meter&gt;
&lt;meter&gt;&lt;object data="graph75.png"&gt;0.75&lt;/object&gt;&lt;/meter&gt; &lt;!-- using <span class=bad>&lt;img alt="0.75" ...&gt;</span> wouldn't work; the alt would be ignored --&gt;
&lt;meter min="0" max="100" value="75"&gt;&lt;/meter&gt;</pre>

<p>The following example is incorrect use of the element, because
Expand Down
6 changes: 3 additions & 3 deletions source
Expand Up @@ -17568,7 +17568,7 @@ Linux demo 2.6.10-grsec+gg3+e+fhs6b+nfs+gr0501+++p3+c4a+gr2b-reslog-v6.189 #1 SM
<dt>Content attributes:</dt>
<dd><span>Global attributes</span></dd>
<dt>DOM interface:</dt>
<dd>Uses <code>HTMLElement</code>.</dd>
<dd>Use <code>HTMLElement</code>.</dd>
</dl>

<p>The <code>sup</code> element <span>represents</span> a
Expand Down Expand Up @@ -17745,7 +17745,7 @@ brighter. A &lt;b>rat&lt;/b> scurries past the corner wall.&lt;/p></pre>

<div class="example">
<p>The following would be <em>incorrect</em> usage:</p>
<pre>&lt;p>&lt;b>WARNING!&lt;/b> Do not frob the barbinator!&lt;/p></pre>
<pre class="bad">&lt;p>&lt;b>WARNING!&lt;/b> Do not frob the barbinator!&lt;/p></pre>
<p>In the previous example, the correct element to use would have
been <code>strong</code>, not <code>b</code>.</p>
</div>
Expand Down Expand Up @@ -18324,7 +18324,7 @@ wormhole connection.&lt;/mark>&lt;/p></pre>
&lt;meter>3/4&lt;/meter>
&lt;meter>6 blocks used (out of 8 total)&lt;/meter>
&lt;meter>max: 100; current: 75&lt;/meter>
&lt;meter>&lt;object data="graph75.png">0.75&lt;/object>&lt;/meter>
&lt;meter>&lt;object data="graph75.png">0.75&lt;/object>&lt;/meter> &lt;!-- using <span class="bad">&lt;img alt="0.75" ...></span> wouldn't work; the alt would be ignored -->
&lt;meter min="0" max="100" value="75">&lt;/meter></pre>

<p>The following example is incorrect use of the element, because
Expand Down

0 comments on commit 806d693

Please sign in to comment.