- From: poot <cvsmail@w3.org>
- Date: Fri, 11 Sep 2009 09:26:55 +0900 (JST)
- To: public-html-diffs@w3.org
hixie: <hx> examples. (whatwg r3801)
http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.2969&r2=1.2970&f=h
http://html5.org/tools/web-apps-tracker?from=3800&to=3801
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2969
retrieving revision 1.2970
diff -u -d -r1.2969 -r1.2970
--- Overview.html 11 Sep 2009 00:19:56 -0000 1.2969
+++ Overview.html 11 Sep 2009 00:26:31 -0000 1.2970
@@ -11619,7 +11619,37 @@
section on <a href="#headings-and-sections">headings and sections</a>.<p>These elements have a <dfn id="rank">rank</dfn> given by the number in
their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements">h1</a></code> element is said to have the highest
rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements">h6</a></code> element has the lowest rank, and two
- elements with the same name have equal rank.<h4 id="the-hgroup-element"><span class="secno">4.4.7 </span>The <dfn><code>hgroup</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><dl class="element"><dt>Categories</dt>
+ elements with the same name have equal rank.<div class="example">
+
+ <p>These two snippets are equivalent:</p>
+
+ <pre><h1>Let's call it a draw(ing surface)</h1>
+<h2>Diving in</h2>
+<h2>Simple shapes</h2>
+<h2>Canvas coordinates</h2>
+<h3>Canvas coordinates diagram</h3>
+<h2>Paths</h2></pre>
+
+ <pre><section>
+ <h1>Let's call it a draw(ing surface)</h1>
+ <section>
+ <h1>Diving in</h1>
+ </section>
+ <section>
+ <h1>Simple shapes</h1>
+ </section>
+ <section>
+ <h1>Canvas coordinates</h1>
+ <section>
+ <h1>Canvas coordinates diagram</h1>
+ </section>
+ </section>
+ <section>
+ <h1>Paths</h1>
+ </section>
+</section></pre>
+
+ </div><h4 id="the-hgroup-element"><span class="secno">4.4.7 </span>The <dfn><code>hgroup</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><dl class="element"><dt>Categories</dt>
<dd><a href="#flow-content">Flow content</a>.</dd>
<dd><a href="#heading-content">Heading content</a>.</dd>
<dd><a href="#formatblock-candidate"><code title="">formatBlock</code> candidate</a>.</dd>
Received on Friday, 11 September 2009 00:27:31 UTC