- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 23 Oct 2009 00:41:08 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv21630 Modified Files: Overview.html Log Message: Make <dt> optional in <details>. (whatwg r4278) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3418 retrieving revision 1.3419 diff -u -d -r1.3418 -r1.3419 --- Overview.html 23 Oct 2009 00:29:52 -0000 1.3418 +++ Overview.html 23 Oct 2009 00:41:04 -0000 1.3419 @@ -35363,7 +35363,7 @@ <dt>Contexts in which this element may be used:</dt> <dd>Where <a href="#flow-content">flow content</a> is expected.</dd> <dt>Content model:</dt> - <dd>One <code><a href="#the-dt-element">dt</a></code> element followed by one <code><a href="#the-dd-element">dd</a></code> element.</dd> + <dd>Optionally one <code><a href="#the-dt-element">dt</a></code> element, followed by one <code><a href="#the-dd-element">dd</a></code> element.</dd> <dt>Content attributes:</dt> <dd><a href="#global-attributes">Global attributes</a></dd> <dd><code title="attr-details-open"><a href="#attr-details-open">open</a></code></dd> @@ -35378,9 +35378,10 @@ information or controls.<p class="note">The <code><a href="#the-details-element">details</a></code> element is not appropriate for footnotes. Please see <a href="#footnotes">the section on footnotes</a> for details on how to mark up footnotes.<p>The <span class="impl">first</span> <code><a href="#the-dt-element">dt</a></code> element child - of the element<span class="impl">, if any,</span> - <a href="#represents">represents</a> the summary of the details. <span class="impl">If there is no child <code><a href="#the-dt-element">dt</a></code> element, the user - agent should provide its own legend (e.g. "Details").</span><p>The <span class="impl">first</span> <code><a href="#the-dd-element">dd</a></code> element child + of the element, if any, <a href="#represents">represents</a> the summary of the + details. <span class="impl">If there is no child <code><a href="#the-dt-element">dt</a></code> + element, the user agent should provide its own legend + (e.g. "Details").</span><p>The <span class="impl">first</span> <code><a href="#the-dd-element">dd</a></code> element child of the element<span class="impl">, if any,</span> <a href="#represents">represents</a> the details. <span class="impl">If there is no child <code><a href="#the-dd-element">dd</a></code> element, then there are no @@ -68538,8 +68539,8 @@ <td><a href="#flow-content" title="Flow content">flow</a>; <a href="#sectioning-root" title="Sectioning root">sectioning root</a></td> <td><a href="#flow-content" title="Flow content">flow</a></td> - <td><code><a href="#the-dd-element">dd</a></code>*; - <code><a href="#the-dt-element">dt</a></code>*</td> + <td><code><a href="#the-dt-element">dt</a></code>*; + <code><a href="#the-dd-element">dd</a></code>*</td> <td><a href="#global-attributes" title="global attributes">globals</a></td> <td><code><a href="#htmlelement">HTMLElement</a></code></td> <tr><th><code><a href="#the-footer-element">footer</a></code></th>
Received on Friday, 23 October 2009 00:41:12 UTC