- From: poot <cvsmail@w3.org>
- Date: Mon, 2 Feb 2009 20:06:18 +0900 (JST)
- To: public-html-diffs@w3.org
Filling in the rendering section: editorial fixes; sectioning content <h1>. (whatwg r2736) 10.3.6 Punctuation and decorations http://people.w3.org/mike/diffs/html5/spec/Overview.1.1906.html#punctuation-and-decorations 10 Rendering http://people.w3.org/mike/diffs/html5/spec/Overview.1.1906.html#rendering 10.3.5 Fonts and colors http://people.w3.org/mike/diffs/html5/spec/Overview.1.1906.html#fonts-and-colors 10.2 Hidden elements http://people.w3.org/mike/diffs/html5/spec/Overview.1.1906.html#hidden-elements http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1905&r2=1.1906&f=h http://html5.org/tools/web-apps-tracker?from=2735&to=2736 =================================================================== 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:07:00 UTC