mike: added text-align: center on "Typical default display properties" for th element (thx=GPHemsley)

mike: added text-align: center on "Typical default display properties"
for th element (thx=GPHemsley)

http://dev.w3.org/cvsweb/html5/markup/spec.html?r1=1.173&r2=1.174&f=h

===================================================================
RCS file: /sources/public/html5/markup/th.html,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- th.html 16 Feb 2010 10:28:20 -0000 1.46
+++ th.html 22 Feb 2010 11:27:51 -0000 1.47
@@ -148,7 +148,7 @@
         <h2 class="element-subhead">Typical default display properties <a class="hash" href="#th-display">#</a></h2>
         <div class="css-props" id="th-css"><div class="selectors"><span class="selector">th</span> {
 </div><div class="properties"><div class="css-property"><span class="prop-name">display</span>: <span class="prop-value">table-cell</span>;</div><div class="css-property"><span class="prop-name">vertical-align</span>: <span class="prop-value">inherit</span>; }</div></div><div class="selectors"><span class="selector">th</span> {
-</div><div class="properties"><div class="css-property"><span class="prop-name">font-weight</span>: <span class="prop-value">bold</span>; }</div></div></div></div></div>
+</div><div class="properties"><div class="css-property"><span class="prop-name">font-weight</span>: <span class="prop-value">bold</span>;</div><div class="css-property"><span class="prop-name">text-align</span>: <span class="prop-value">center</span>; }</div></div></div></div></div>
 <hr class="footerbreak"></hr>
 <div class="nav">
 <span class="nav-prev"><a href="tfoot.html">&#171; tfoot</a></span>

Index: webapps.html
===================================================================
RCS file: /sources/public/html5/markup/webapps.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- webapps.html 20 Feb 2010 03:36:57 -0000 1.4
+++ webapps.html 22 Feb 2010 11:27:51 -0000 1.5
@@ -161,7 +161,7 @@
 
   <header class="head" id="head"><p><a class="logo" href="http://www.whatwg.org/" rel="home"><img alt="WHATWG" src="/images/logo"/></a></p>
    <hgroup><h1>HTML5 (including next generation additions still in development)</h1>
-    <h2 class="no-num no-toc">Draft Standard &#x2014; 18 February 2010</h2>
+    <h2 class="no-num no-toc">Draft Standard &#x2014; 22 February 2010</h2>
    </hgroup><p>You can take part in this work. <a href="http://www.whatwg.org/mailing-list">Join the working group's discussion list.</a></p>
    <p><strong>Web designers!</strong> We have a <a href="http://blog.whatwg.org/faq/">FAQ</a>, a <a href="http://forums.whatwg.org/">forum</a>, and a <a href="http://www.whatwg.org/mailing-list#help">help mailing list</a> for you!</p>
    <!--<p class="impl"><strong>Implementors!</strong> We have a <a href="http://www.whatwg.org/mailing-list#implementors">mailing list</a> for you too!</p>-->
@@ -1069,7 +1069,10 @@
   <ul class="brief"><li><a href="http://www.whatwg.org/specs/web-workers/current-work/">Web Workers</a>
    </li><li><a href="http://dev.w3.org/html5/webstorage/">Web Storage</a>
    </li><li><a href="http://dev.w3.org/html5/websockets/">Web Sockets API</a>
-   </li><li><a href="http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol">Web Sockets protocol</a>
+   </li><li><a href="http://www.whatwg.org/specs/web-socket-protocol/">Web Sockets protocol</a>
+<!--
+   <li><a href="http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol">Web Sockets protocol</a>
+-->
    </li><li><a href="http://dev.w3.org/html5/eventsource/">Server-sent Events</a>
    </li><li><a href="http://dev.w3.org/html5/webdatabase/">Web SQL Database</a>
    </li><li><a href="http://dev.w3.org/geo/api/spec-source.html">Geolocation API</a>

Index: Makefile
===================================================================
RCS file: /sources/public/html5/markup/Makefile,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- Makefile 18 Feb 2010 18:41:32 -0000 1.91
+++ Makefile 22 Feb 2010 11:27:50 -0000 1.92
@@ -68,6 +68,7 @@
 
 html.css:
  $(CURL) $(CURLFLAGS) -o html.css http://svn.webkit.org/repository/webkit/trunk/WebCore/css/html.css
+ $(PATCH) $(PATCHFLAGS) < patch-css
 
 html.css.LICENSE.xml: html.css
  echo "<license>" > $@

Index: spec.html
===================================================================
RCS file: /sources/public/html5/markup/spec.html,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -d -r1.173 -r1.174
--- spec.html 22 Feb 2010 09:36:44 -0000 1.173
+++ spec.html 22 Feb 2010 11:27:50 -0000 1.174
@@ -17075,8 +17075,12 @@
 <div class="selectors">
 <span class="selector">th</span> {
 </div>
-<div class="properties"><div class="css-property">
-<span class="prop-name">font-weight</span>: <span class="prop-value">bold</span>; }</div></div>
+<div class="properties">
+<div class="css-property">
+<span class="prop-name">font-weight</span>: <span class="prop-value">bold</span>;</div>
+<div class="css-property">
+<span class="prop-name">text-align</span>: <span class="prop-value">center</span>; }</div>
+</div>
 </div>
 </div>
 </div>

Index: html.css
===================================================================
RCS file: /sources/public/html5/markup/html.css,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- html.css 3 Feb 2010 10:27:01 -0000 1.3
+++ html.css 22 Feb 2010 11:27:50 -0000 1.4
@@ -216,7 +216,8 @@
 }
 
 th {
-    font-weight: bold
+    font-weight: bold;
+    text-align: center
 }
 
 caption {

Received on Monday, 22 February 2010 11:29:11 UTC