- From: poot <cvsmail@w3.org>
- Date: Mon, 2 Feb 2009 20:22:07 +0900 (JST)
- To: public-html-diffs@w3.org
Filling in the rendering section: editorial fixes; default styles for inline elements. (whatwg r2737) 10.3.5 Fonts and colors http://people.w3.org/mike/diffs/html5/spec/Overview.1.1907.html#fonts-and-colors 10.4.2 Form controls and widgets http://people.w3.org/mike/diffs/html5/spec/Overview.1.1907.html#form-controls-and-widgets 10.3.3 Margins and padding http://people.w3.org/mike/diffs/html5/spec/Overview.1.1907.html#margins-and-padding 10.4 Self-contained features http://people.w3.org/mike/diffs/html5/spec/Overview.1.1907.html#self-contained-features 10.3.6 Punctuation and decorations http://people.w3.org/mike/diffs/html5/spec/Overview.1.1907.html#punctuation-and-decorations 10.3.4 Alignment http://people.w3.org/mike/diffs/html5/spec/Overview.1.1907.html#alignment http://people.w3.org/mike/diffs/html5/spec/Overview.diff.html http://dev.w3.org/cvsweb/html5/spec/Overview.html?r1=1.1906&r2=1.1907&f=h http://html5.org/tools/web-apps-tracker?from=2736&to=2737 =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.1906 retrieving revision 1.1907 diff -u -d -r1.1906 -r1.1907 --- Overview.html 2 Feb 2009 11:02:55 -0000 1.1906 +++ Overview.html 2 Feb 2009 11:18:46 -0000 1.1907 @@ -966,7 +966,8 @@ <li><a href=#the-title-attribute-0><span class=secno>10.4.1 </span>The <code title=attr-title>title</code> attribute</a></li> <li><a href=#form-controls-and-widgets><span class=secno>10.4.2 </span>Form controls and widgets</a></li> <li><a href=#the-marquee-element><span class=secno>10.4.3 </span>The <code>marquee</code> element</a></li> - <li><a href=#the-hr-element-0><span class=secno>10.4.4 </span>The <code>hr</code> element</a></ol></li> + <li><a href=#the-hr-element-0><span class=secno>10.4.4 </span>The <code>hr</code> element</a></li> + <li><a href=#frames><span class=secno>10.4.5 </span>Frames</a></ol></li> <li><a href=#other><span class=secno>10.5 </span>Other</a></li> <li><a href=#rendering-and-menus-toolbars><span class=secno>10.6 </span>Rendering and menus/toolbars</a> <ol> @@ -46047,8 +46048,12 @@ margins on <a href=#html-elements>HTML elements</a> that collapse with the top or bottom of the initial containing block are expected to be collapsed to zero.<h4 id=alignment><span class=secno>10.3.4 </span>Alignment</h4><pre class=css>@namespace url(http://www.w3.org/1999/xhtml); + thead, tbody, tfoot, table > tr { vertical-align: middle; } tr, td, th { vertical-align: inherit; } +sub { vertical-align: sub; } +sup { vertical-align: super; } + table[align=left], img[align=left] { float: left; } table[align=right], img[align=right] { float: right; } th { text-align: center; }</pre><p>The <code><a href=#center>center</a></code> and <code><a href=#the-caption-element>caption</a></code> elements are @@ -46057,21 +46062,24 @@ tables within them, as their descendants had their horizontal margins set to 'auto'.<h4 id=fonts-and-colors><span class=secno>10.3.5 </span>Fonts and colors</h4><pre class=css>@namespace url(http://www.w3.org/1999/xhtml); -:link, :visited { text-decoration: underline; } -:link { color: blue; } -:visited { color: purple; } -address { font-style: italic; } -body { color: black; background: white; } +address, cite, dfn, em, i, var { font-style: italic; } +b, strong, th { font-weight: bold; } +code, kbd, listing, plaintext, pre, samp, tt, xmp { font-family: monospace; } h1 { font-size: 2.00em; font-weight: bold; } h2 { font-size: 1.05em; font-weight: bold; } h3 { font-size: 1.17em; font-weight: bold; } h4 { font-size: 1.00em; font-weight: bold; } h5 { font-size: 0.83em; font-weight: bold; } h6 { font-size: 0.67em; font-weight: bold; } +big { font-size: larger; } +small, sub, sup { font-size: smaller; } +sub, sup { line-height: normal; } + +:link { color: blue; } +:visited { color: purple; } +body { color: black; background: white; } table { border-color: gray; } -thead, tbody, tfoot, tr { border-color: inherit; } -th { font-weight: bold; } -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>, +thead, tbody, tfoot, tr { border-color: inherit; }</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 @@ -46082,9 +46090,15 @@ <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); +:link, :visited, ins, u { text-decoration: underline; } +abbr[title], acronym[title] { text-decoration: dotted underline; }<!-- XXX CSS3 http://dev.w3.org/csswg/css3-text/#text-decoration-style --> +del, s, strike { text-decoration: line-through; } +blink { text-decoration: blink; } + q:before { content: open-quote; } q:after { content: close-quote; } +nobr { white-space: nowrap; } listing, plaintext, pre, xmp { white-space: pre; } ol { list-style-type: decimal; } @@ -46142,7 +46156,7 @@ attribute has a value that is not the empty string, it is expected that the user agent will expose the contents of that attribute as a tooltip.<p>U+000A LINE FEED (LF) characters are expected to cause line - breaks in the tooltip.<h4 id=form-controls-and-widgets><span class=secno>10.4.2 </span>Form controls and widgets</h4><p class=XXX>...<h4 id=the-marquee-element><span class=secno>10.4.3 </span>The <code><a href=#the-marquee-element-0>marquee</a></code> element</h4><p class=XXX>...<h4 id=the-hr-element-0><span class=secno>10.4.4 </span>The <code><a href=#the-hr-element>hr</a></code> element</h4><p class=XXX>...<h3 id=other><span class=secno>10.5 </span>Other</h3><!-- XXX + breaks in the tooltip.<h4 id=form-controls-and-widgets><span class=secno>10.4.2 </span>Form controls and widgets</h4><p class=XXX>...<h4 id=the-marquee-element><span class=secno>10.4.3 </span>The <code><a href=#the-marquee-element-0>marquee</a></code> element</h4><p class=XXX>...<h4 id=the-hr-element-0><span class=secno>10.4.4 </span>The <code><a href=#the-hr-element>hr</a></code> element</h4><p class=XXX>...<h4 id=frames><span class=secno>10.4.5 </span>Frames</h4><p class=XXX>...<h3 id=other><span class=secno>10.5 </span>Other</h3><!-- XXX section { } mark { }
Received on Monday, 2 February 2009 11:22:50 UTC