- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 13 Sep 2009 11:18:27 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv6073 Modified Files: Overview.html Log Message: <details> example (whatwg r3825) Index: Overview.html =================================================================== 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:18:37 UTC