html5/md Overview.html,1.31,1.32

Update of /sources/public/html5/md
In directory hutz:/tmp/cvs-serv20125

Modified Files:
	Overview.html 
Log Message:
Change <figure> and <details> to use <figcaption> and <summary> rather than <dt>/<dd> or <legend>. (whatwg r4636)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/md/Overview.html,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- Overview.html	29 Jan 2010 11:54:33 -0000	1.31
+++ Overview.html	30 Jan 2010 03:12:23 -0000	1.32
@@ -262,7 +262,7 @@
    <h1>HTML Microdata</h1>
    <h2 class="no-num no-toc" id="generatedID"></h2>
 
-   <h2 class="no-num no-toc" id="editor-s-draft-29-january-2010">Editor's Draft 29 January 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-30-january-2010">Editor's Draft 30 January 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/md/">http://www.w3.org/TR/md/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -359,7 +359,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 29 January 2010 Editor's Draft.
+  This specification is the 30 January 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a
   larger specification</a> being produced by the <a href="http://www.whatwg.org/">WHATWG</a>, which is available under a
   license that permits reuse of the specification text.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><!-- (this text is from the RDFa+HTML spec --><p>This specification is an extension to the HTML5 language. All
@@ -713,14 +713,14 @@
    following two examples:</p>
 
    <pre>&lt;figure&gt;
- &lt;dd&gt;&lt;img src="castle.jpeg"&gt;
- &lt;dt&gt;&lt;span itemscope&gt;&lt;span itemprop="name"&gt;The Castle&lt;/span&gt;&lt;/span&gt; (1986)
+ &lt;img src="castle.jpeg"&gt;
+ &lt;figcaption&gt;&lt;span itemscope&gt;&lt;span itemprop="name"&gt;The Castle&lt;/span&gt;&lt;/span&gt; (1986)&lt;/figcaption&gt;
 &lt;/figure&gt;</pre>
 
    <pre>&lt;span itemscope&gt;&lt;meta itemprop="name" content="The Castle"&gt;&lt;/span&gt;
 &lt;figure&gt;
- &lt;dd&gt;&lt;img src="castle.jpeg"&gt;
- &lt;dt&gt;The Castle (1986)
+ &lt;img src="castle.jpeg"&gt;
+ &lt;figcaption&gt;The Castle (1986)&lt;/figcaption&gt;
 &lt;/figure&gt;</pre>
 
    <p>Both have a figure with a caption, and both, completely
@@ -4058,8 +4058,8 @@
    simultaneously.</p>
 
    <pre>&lt;figure <strong>itemscope itemtype="http://n.whatwg.org/work"</strong>&gt;
- &lt;dd&gt;&lt;img <strong>itemprop="work"</strong> src="mypond.jpeg"&gt;
- &lt;dt&gt;
+ &lt;img <strong>itemprop="work"</strong> src="mypond.jpeg"&gt;
+ &lt;figcaption&gt;
   &lt;p&gt;&lt;cite <strong>itemprop="title"</strong>&gt;My Pond&lt;/cite&gt;&lt;/p&gt;
   &lt;p&gt;&lt;small&gt;Licensed under the &lt;a <strong>itemprop="license"</strong>
   href="http://creativecommons.org/licenses/by-sa/3.0/us/"&gt;Creative
@@ -4067,6 +4067,7 @@
   and the &lt;a <strong>itemprop="license"</strong>
   href="http://www.opensource.org/licenses/mit-license.php"&gt;MIT
   license&lt;/a&gt;.&lt;/small&gt;
+ &lt;/figcaption&gt;
 &lt;/figure&gt;</pre>
 
   </div><div class="impl">

Received on Saturday, 30 January 2010 03:12:27 UTC