- From: poot <cvsmail@w3.org>
- Date: Fri, 25 Sep 2009 04:53:02 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: mention <meter> doesn't work with alt=''. (whatwg r3989) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.3150&r2=1.3151&f=h http://html5.org/tools/web-apps-tracker?from=3988&to=3989 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3150 retrieving revision 1.3151 diff -u -d -r1.3150 -r1.3151 --- Overview.html 24 Sep 2009 10:24:13 -0000 1.3150 +++ Overview.html 24 Sep 2009 19:52:25 -0000 1.3151 @@ -14429,7 +14429,7 @@ <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>These elements must be used only to mark up typographical @@ -14552,7 +14552,7 @@ with the <code><a href="#the-strong-element">strong</a></code> element, and text marked or highlighted should use the <code><a href="#the-mark-element">mark</a></code> element.<div class="example"> <p>The following would be <em>incorrect</em> usage:</p> - <pre><p><b>WARNING!</b> Do not frob the barbinator!</p></pre> + <pre class="bad"><p><b>WARNING!</b> Do not frob the barbinator!</p></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><p class="note">Style sheets can be used to format <code><a href="#the-b-element">b</a></code> @@ -14998,7 +14998,7 @@ <meter>3/4</meter> <meter>6 blocks used (out of 8 total)</meter> <meter>max: 100; current: 75</meter> -<meter><object data="graph75.png">0.75</object></meter> +<meter><object data="graph75.png">0.75</object></meter> <!-- using <span class="bad"><img alt="0.75" ...></span> wouldn't work; the alt would be ignored --> <meter min="0" max="100" value="75"></meter></pre> <p>The following example is incorrect use of the element, because
Received on Thursday, 24 September 2009 19:53:37 UTC