- From: <bugzilla@jessica.w3.org>
- Date: Mon, 18 Feb 2013 16:38:13 +0000
- To: public-html-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=19591
--- Comment #6 from Ian Yang <ian.html@gmail.com> ---
Yeah, Ian Hickson has responded in a recent discussion that <main> actually
doesn't need to be a sectioning element.
Please see his respond:
http://lists.w3.org/Archives/Public/public-whatwg-archive/2013Feb/0075.html
So the idea markup and document outline should be:
<!DOCTYPE html>
<title>blablabla</title>
<header>
<h1>Branding</h1>
<nav>
<h1>Navigation</h1>
blablabla
</nav>
<section>
<h1>Search</h1>
blablabla
</section>
</header>
<main role="main">
<section>
<h1>Welcome</h1>
blablabla
</section>
<section>
<h1>Brief Intro</h1>
blablabla
</section>
<aside role="complementary">
<h1>Complementary Content</h1>
<article>
<h1>Latest News</h1>
blablabla
</article>
<article>
<h1>Recent Comments</h1>
blablabla
</article>
</aside>
</main>
<footer>
blablabla
</footer>
1. Branding
1. Navigation
2. Search
3. Welcome
4. Brief Intro
5. Complementary Content
1. Latest News
2. Recent Comments
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Monday, 18 February 2013 16:38:18 UTC