chromium/third_party/blink/web_tests/tables/mozilla/core/one_row.html

<body style="overflow: hidden;">
Table auto, no cells fixed
<table border>
 <tr>
  <td>fooooooooooooooooooooooooooooo</td>
  <td>barrrrrrrrr</td>
  <td>zap</td>
 </tr>
</table>
<BR>

Table fixed, no cells fixed
<table width=500 border>
 <tr>
  <td>fooooooooooooooooooooooooooooo</td>
  <td>barrrrrrrrr</td>
  <td>zap</td>
 </tr>
</table>
<BR>

Table fixed, no cells fixed
<table width=200 border>
 <tr>
  <td>fo oo oo oo oo oo oo oo oo oo oo oo oo oo oo</td>
  <td>barr rrrr rrrr</td>
  <td>zap</td>
 </tr>
</table>
<BR>

Table auto, 1st cell fixed
<table border>
 <tr>
  <td width=100>fooooo</td>
  <td>bar</td>
 </tr>
</table>
<BR>

Table fixed, 1st cell fixed
<table width=500 border>
 <tr>
  <td width=100>fooooo</td>
  <td>bar</td>
 </tr>
</table>
<BR>

Table auto, 1st cell fixed too small
<table border>
 <tr>
  <td width=100>fooooooooooooooooooooooooooooo</td>
  <td>bar</td>
 </tr>
</table>
<BR>

Table fixed, 1st cell fixed too small
<table width=500 border>
 <tr>
  <td width=100>fooooooooooooooooooooooooooooo</td>
  <td>bar</td>
 </tr>
</table>
<BR>

Table auto, both cells fixed
<table border>
 <tr>
  <td width=100>foooo</td>
  <td width=100>bar</td>
 </tr>
</table>
<BR>

Table fixed, both cells fixed
<table width=500 border>
 <tr>
  <td width=100>foooo</td>
  <td width=100>bar</td>
 </tr>
</table>
<BR>

Table auto, both cells fixed, 1st one too small
<table border>
 <tr>
  <td width=100>fooooooooooooooooooooooooooooo</td>
  <td width=100>bar</td>
 </tr>
</table>
<BR>

Table fixed, both cells fixed, 1st cell fixed too small
<table width=500 border>
 <tr>
  <td width=100>fooooooooooooooooooooooooooooo</td>
  <td width=100>bar</td>
 </tr>
</table>
<BR>
</body>