- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 05 May 2011 06:46:47 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv25393
Modified Files:
spec.html tabular-data.html
Log Message:
fix the example to match the algorithms (whatwg r6077)
[updated by splitter]
Index: tabular-data.html
===================================================================
RCS file: /sources/public/html5/spec/tabular-data.html,v
retrieving revision 1.1024
retrieving revision 1.1025
diff -u -d -r1.1024 -r1.1025
--- tabular-data.html 15 Apr 2011 00:46:57 -0000 1.1024
+++ tabular-data.html 5 May 2011 06:46:45 -0000 1.1025
@@ -1467,23 +1467,23 @@
<tr> <th> ID <th> Measurement <th> Average <th> Maximum
<tbody>
<tr> <td> <th scope=rowgroup> Cats <td> <td>
- <tr> <td> 93 <th> Legs <td> 3.5 <td> 4
- <tr> <td> 10 <th> Tails <td> 1 <td> 1
+ <tr> <td> 93 <th scope=row> Legs <td> 3.5 <td> 4
+ <tr> <td> 10 <th scope=row> Tails <td> 1 <td> 1
<tbody>
<tr> <td> <th scope=rowgroup> English speakers <td> <td>
- <tr> <td> 32 <th> Legs <td> 2.67 <td> 4
- <tr> <td> 35 <th> Tails <td> 0.33 <td> 1
+ <tr> <td> 32 <th scope=row> Legs <td> 2.67 <td> 4
+ <tr> <td> 35 <th scope=row> Tails <td> 0.33 <td> 1
</table></pre>
<p>This would result in the following table:</p>
<table><thead><tr><th> ID </th><th> Measurement </th><th> Average </th><th> Maximum
</th></tr></thead><tbody><tr><td> </td><th scope="rowgroup"> Cats </th><td> </td><td>
- </td></tr><tr><td> 93 </td><th> Legs </th><td> 3.5 </td><td> 4
- </td></tr><tr><td> 10 </td><th> Tails </th><td> 1 </td><td> 1
+ </td></tr><tr><td> 93 </td><th scope="row"> Legs </th><td> 3.5 </td><td> 4
+ </td></tr><tr><td> 10 </td><th scope="row"> Tails </th><td> 1 </td><td> 1
</td></tr></tbody><tbody><tr><td> </td><th scope="rowgroup"> English speakers </th><td> </td><td>
- </td></tr><tr><td> 32 </td><th> Legs </th><td> 2.67 </td><td> 4
- </td></tr><tr><td> 35 </td><th> Tails </th><td> 0.33 </td><td> 1
+ </td></tr><tr><td> 32 </td><th scope="row"> Legs </th><td> 2.67 </td><td> 4
+ </td></tr><tr><td> 35 </td><th scope="row"> Tails </th><td> 0.33 </td><td> 1
</td></tr></tbody></table><p>The headers in the first row all apply directly down to the rows
in their column.</p>
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1470
retrieving revision 1.1471
diff -u -d -r1.1470 -r1.1471
--- spec.html 5 May 2011 00:47:39 -0000 1.1470
+++ spec.html 5 May 2011 06:46:45 -0000 1.1471
@@ -367,7 +367,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.4880.
+This is revision 1.4881.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Received on Thursday, 5 May 2011 06:46:49 UTC