- From: poot <cvsmail@w3.org>
- Date: Sun, 13 Sep 2009 20:18:43 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: <details> example (whatwg r3825) http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2993&r2=1.2994&f=h http://html5.org/tools/web-apps-tracker?from=3824&to=3825 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.2993 retrieving revision 1.2994 diff -u -d -r1.2993 -r1.2994 --- Overview.html 13 Sep 2009 11:01:12 -0000 1.2993 +++ Overview.html 13 Sep 2009 11:18:24 -0000 1.2994 @@ -34571,6 +34571,26 @@ <p>The <dfn id="dom-details-open" title="dom-details-open"><code>open</code></dfn> attribute must <a href="#reflect">reflect</a> the <code title="attr-details-open"><a href="#attr-details-open">open</a></code> content attribute.</p> + </div><div class="example"> + + <p>The following example shows the <code><a href="#the-details-element">details</a></code> element + being used to hide technical details in a progress report.</p> + + <pre><section class="progress window"> + <h1>Copying "Really Achieving Your Childhood Dreams"</h1> + <details> + <legend>Copying... <progress max="375505392" value="97543282"></progress> 25%</legend> + <dl> + <dt>Transfer rate:</dt> <dd>452KB/s</dd> + <dt>Local filename:</dt> <dd>/home/rpausch/raycd.m4v</dd> + <dt>Remote filename:</dt> <dd>/var/www/lectures/raycd.m4v</dd> + <dt>Duration:</dt> <dd>01:16:27</dd> + <dt>Color profile:</dt> <dd>SD (6-1-6)</dd> + <dt>Dimensions:</dt> <dd>320×240</dd> + </dl> + </details> +</section></pre> + </div><!-- v2DATAGRID <h4 id="datagrid">The <dfn><code>datagrid</code></dfn> element</h4>
Received on Sunday, 13 September 2009 11:19:19 UTC