layout/reftests/bugs/413286-5-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/413286-5-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,68 @@
     1.4 +<html>
     1.5 +<head><style>
     1.6 +  table        { width: 600px  }
     1.7 +  td.smallSpec { width: 100px; }
     1.8 +  td.bigSpec   { width: 500px; }
     1.9 +  td.smallPct  { width: 10%;   }
    1.10 +  td.bigPct    { width: 90%;   }
    1.11 +  td.pink      { background: pink }
    1.12 +  td.teal      { background: teal }
    1.13 +</style></head>
    1.14 +<body>
    1.15 +
    1.16 +<h2>Other column fixed-width</h2>
    1.17 +
    1.18 +<table cellspacing="0" cellpadding="0">
    1.19 +  <tr>
    1.20 +    <td class="smallSpec pink">100</td>
    1.21 +    <td class="bigSpec teal"/>
    1.22 +  </tr>
    1.23 +</table>
    1.24 +
    1.25 +<h2>Other column percent-width</h2>
    1.26 +
    1.27 +<table cellspacing="0" cellpadding="0">
    1.28 +  <tr>
    1.29 +    <td class="smallPct pink">10%</td>
    1.30 +    <td class="bigPct teal"/>
    1.31 +  </tr>
    1.32 +</table>
    1.33 +
    1.34 +<h2>Other column fixed-width; zero column spanned by colspan (crossing other column)</h2>
    1.35 +
    1.36 +<table cellspacing="0" cellpadding="0">
    1.37 +  <tr>
    1.38 +    <td class="smallSpec pink">100</td>
    1.39 +    <td class="bigSpec teal"/>
    1.40 +  </tr>
    1.41 +</table>
    1.42 +
    1.43 +<h2>Other column percent-width; zero column spanned by colspan (crossing other column)</h2>
    1.44 +
    1.45 +<table cellspacing="0" cellpadding="0">
    1.46 +  <tr>
    1.47 +    <td class="smallPct pink">10%</td>
    1.48 +    <td class="bigPct teal"/>
    1.49 +  </tr>
    1.50 +</table>
    1.51 +
    1.52 +<h2>Other column fixed-width; two zero columns with colspan</h2>
    1.53 +
    1.54 +<table cellspacing="0" cellpadding="0">
    1.55 +  <tr>
    1.56 +    <td class="smallSpec pink">100</td>
    1.57 +    <td class="bigSpec teal"/>
    1.58 +  </tr>
    1.59 +</table>
    1.60 +
    1.61 +<h2>Other column percent-width; two zero columns with colspan</h2>
    1.62 +
    1.63 +<table cellspacing="0" cellpadding="0">
    1.64 +  <tr>
    1.65 +    <td class="smallPct pink">10%</td>
    1.66 +    <td class="bigPct teal"/>
    1.67 +  </tr>
    1.68 +</table>
    1.69 +
    1.70 +</body>
    1.71 +</html>

mercurial