[html5] r2737 - [] (0) Filling in the rendering section: editorial fixes; default styles for inl [...]
whatwg at whatwg.org
whatwg at whatwg.org
Mon Feb 2 03:18:41 PST 2009
Author: ianh
Date: 2009-02-02 03:18:40 -0800 (Mon, 02 Feb 2009)
New Revision: 2737
Modified:
index
source
Log:
[] (0) Filling in the rendering section: editorial fixes; default styles for inline elements.
Modified: index
===================================================================
--- index 2009-02-02 11:02:49 UTC (rev 2736)
+++ index 2009-02-02 11:18:40 UTC (rev 2737)
@@ -1043,7 +1043,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>
@@ -55853,8 +55854,12 @@
<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>
@@ -55870,21 +55875,24 @@
<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>
+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
@@ -55905,9 +55913,15 @@
<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; }
@@ -55992,11 +56006,13 @@
breaks in the tooltip.</p>
+
<h4 id=form-controls-and-widgets><span class=secno>10.4.2 </span>Form controls and widgets</h4>
<p class=XXX>...</p>
+
<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>...</p>
@@ -56008,6 +56024,13 @@
<p class=XXX>...</p>
+
+ <h4 id=frames><span class=secno>10.4.5 </span>Frames</h4>
+
+ <p class=XXX>...</p>
+
+
+
<h3 id=other><span class=secno>10.5 </span>Other</h3>
<!-- XXX
Modified: source
===================================================================
--- source 2009-02-02 11:02:49 UTC (rev 2736)
+++ source 2009-02-02 11:18:40 UTC (rev 2737)
@@ -61074,8 +61074,12 @@
<h4>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>
@@ -61091,21 +61095,24 @@
<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>
+thead, tbody, tfoot, tr { border-color: inherit; }</pre>
<p>The <code>article</code>, <code>aside</code>, <code>nav</code>,
and <code>section</code> elements are expected to affect the styling
@@ -61127,9 +61134,15 @@
<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; }
@@ -61215,11 +61228,13 @@
breaks in the tooltip.</p>
+
<h4>Form controls and widgets</h4>
<p class="XXX">...</p>
+
<h4>The <code>marquee</code> element</h4>
<p class="XXX">...</p>
@@ -61231,6 +61246,13 @@
<p class="XXX">...</p>
+
+ <h4>Frames</h4>
+
+ <p class="XXX">...</p>
+
+
+
<h3>Other</h3>
<!-- XXX
More information about the Commit-Watchers
mailing list