- From: <bugzilla@jessica.w3.org>
- Date: Thu, 16 Feb 2012 18:54:21 +0000
- To: public-html@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=16004 Summary: Headings and sections (example is incorrect?) Product: HTML WG Version: unspecified Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: HTML5 spec author view AssignedTo: mike@w3.org ReportedBy: java@tut.by QAContact: public-html-bugzilla@w3.org CC: public-html-wg-issue-tracking@w3.org, public-html@w3.org <body> <h4>Apples</h4> <p>Apples are fruit.</p> <section> <h2>Taste</h2> <p>They taste lovely.</p> <h6>Sweet</h6> <p>Red apples are sweeter than green ones.</p> <h1>Color</h1> <p>Apples come in various colors.</p> </section> </body> probably it should be equivalent of <body> <h4>Apples</h4> <p>Apples are fruit.</p> <section> <h2>Taste</h2> <p>They taste lovely.</p> <section> <h6>Sweet</h6> <p>Red apples are sweeter than green ones.</p> </section> <section> <h1>Color</h1> <p>Apples come in various colors.</p> </section> </section> </body> and NOT as stated in the current version of document (Draft 09 August 2011): <body> <h1>Apples</h1> <p>Apples are fruit.</p> <section> <h2>Taste</h2> <p>They taste lovely.</p> <section> <h3>Sweet</h3> <p>Red apples are sweeter than green ones.</p> </section> </section> <section> <h2>Color</h2> <p>Apples come in various colors.</p> </section> </body> -- Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
Received on Thursday, 16 February 2012 19:22:51 UTC