- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 02 Feb 2009 11:02:58 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv15027
Modified Files:
Overview.html
Log Message:
Filling in the rendering section: editorial fixes; sectioning content <h1>. (whatwg r2736)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.1905
retrieving revision 1.1906
diff -u -d -r1.1905 -r1.1906
--- Overview.html 2 Feb 2009 10:10:11 -0000 1.1905
+++ Overview.html 2 Feb 2009 11:02:55 -0000 1.1906
@@ -45976,7 +45976,7 @@
language). User agents are encouraged to adapt the suggestions in
this section to their target media.<h3 id=hidden-elements><span class=secno>10.2 </span>Hidden elements</h3><p>User agents are expected to use the following styles in all
media.<pre class=css>@namespace url(http://www.w3.org/1999/xhtml);
-[hidden], area, audio:not([controls]) base, basefont, command,
+[hidden], area, audio:not([controls]), base, basefont, command,
datalist, eventsource, head, input[type=hidden], link,
menu[type=context], meta, noembed, noframes, param, script, source,
style, title { display: none; }</pre><p>This hides all the elements that do not represent anything
@@ -46071,7 +46071,16 @@
table { border-color: gray; }
thead, tbody, tfoot, tr { border-color: inherit; }
th { font-weight: bold; }
-listing, plaintext, pre, xmp { font-family: monospace; }</pre><h4 id=punctuation-and-decorations><span class=secno>10.3.6 </span>Punctuation and decorations</h4><pre class=css>@namespace url(http://www.w3.org/1999/xhtml);
+listing, plaintext, pre, xmp { font-family: monospace; }</pre><p>The <code><a href=#the-article-element>article</a></code>, <code><a href=#the-aside-element>aside</a></code>, <code><a href=#the-nav-element>nav</a></code>,
+ and <code><a href=#the-section-element>section</a></code> elements are expected to affect the styling
+ of <code><a href=#the-h1-h2-h3-h4-h5-and-h6-elements>h1</a></code> elements, based on the nesting depth. If <var title="">x</var> is a selector that matches elements that are either
+ <code><a href=#the-article-element>article</a></code>, <code><a href=#the-aside-element>aside</a></code>, <code><a href=#the-nav-element>nav</a></code>, or
+ <code><a href=#the-section-element>section</a></code> elements, then the following rules capture what
+ is expected:<pre class=css><var title="">x</var> h1 { font-size: 1.05em; }
+<var title="">x</var> <var title="">x</var> h1 { font-size: 1.17em; }
+<var title="">x</var> <var title="">x</var> <var title="">x</var> h1 { font-size: 1.00em; }
+<var title="">x</var> <var title="">x</var> <var title="">x</var> <var title="">x</var> h1 { font-size: 0.83em; }
+<var title="">x</var> <var title="">x</var> <var title="">x</var> <var title="">x</var> <var title="">x</var> h1 { font-size: 0.67em; }</pre><h4 id=punctuation-and-decorations><span class=secno>10.3.6 </span>Punctuation and decorations</h4><pre class=css>@namespace url(http://www.w3.org/1999/xhtml);
q:before { content: open-quote; }
q:after { content: close-quote; }
Received on Monday, 2 February 2009 11:03:06 UTC