layout/reftests/bugs/413286-1a.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/413286-1a.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,108 @@
     1.4 +<html>
     1.5 +  <head>
     1.6 +    <style>
     1.7 +      table     { width: 400px; height: 25px; font-size: 10px; }
     1.8 +      td.blue   { background: lightblue;  color: rgba(0,0,0,0) }
     1.9 +      td.green  { background: lightgreen; color: rgba(0,0,0,0) }
    1.10 +      col.a     { width: 100px; }
    1.11 +      col.c     { width: 25%;   }
    1.12 +    </style>
    1.13 +  </head>
    1.14 +  <body>
    1.15 +    With colspan:
    1.16 +    <table cellspacing=0 cellpadding=0>
    1.17 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.18 +      <tbody><tr>
    1.19 +        <td class="blue"></td>
    1.20 +        <td class="green" colspan="2"></td>
    1.21 +      </tr></tbody>
    1.22 +    </table>
    1.23 +    <table cellspacing=0 cellpadding=0>
    1.24 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.25 +      <tbody><tr>
    1.26 +        <td class="blue">xxx</td>
    1.27 +        <td class="green" colspan="2"></td>
    1.28 +      </tr></tbody>
    1.29 +    </table>
    1.30 +    <table cellspacing=0 cellpadding=0>
    1.31 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.32 +      <tbody><tr>
    1.33 +        <td class="blue"></td>
    1.34 +        <td class="green" colspan="2">xxx</td>
    1.35 +      </tr></tbody>
    1.36 +    </table>
    1.37 +    <table cellspacing=0 cellpadding=0>
    1.38 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.39 +      <tbody><tr>
    1.40 +        <td class="blue">xxx</td>
    1.41 +        <td class="green" colspan="2">xxx</td>
    1.42 +      </tr></tbody>
    1.43 +    </table>
    1.44 +
    1.45 +    Without colspan:
    1.46 +    <table cellspacing=0 cellpadding=0>
    1.47 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.48 +      <tbody><tr>
    1.49 +        <td class="blue"></td>
    1.50 +        <td class="green"></td>
    1.51 +        <td class="green"></td>
    1.52 +      </tr></tbody>
    1.53 +    </table>
    1.54 +    <table cellspacing=0 cellpadding=0>
    1.55 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.56 +      <tbody><tr>
    1.57 +        <td class="blue">xxx</td>
    1.58 +        <td class="green"></td>
    1.59 +        <td class="green"></td>
    1.60 +      </tr></tbody>
    1.61 +    </table>
    1.62 +    <table cellspacing=0 cellpadding=0>
    1.63 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.64 +      <tbody><tr>
    1.65 +        <td class="blue"></td>
    1.66 +        <td class="green">xxx</td>
    1.67 +        <td class="green"></td>
    1.68 +      </tr></tbody>
    1.69 +    </table>
    1.70 +    <table cellspacing=0 cellpadding=0>
    1.71 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.72 +      <tbody><tr>
    1.73 +        <td class="blue"></td>
    1.74 +        <td class="green"></td>
    1.75 +        <td class="green">xxx</td>
    1.76 +      </tr></tbody>
    1.77 +    </table>
    1.78 +    <table cellspacing=0 cellpadding=0>
    1.79 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.80 +      <tbody><tr>
    1.81 +        <td class="blue">xxx</td>
    1.82 +        <td class="green">xxx</td>
    1.83 +        <td class="green"></td>
    1.84 +      </tr></tbody>
    1.85 +    </table>
    1.86 +    <table cellspacing=0 cellpadding=0>
    1.87 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.88 +      <tbody><tr>
    1.89 +        <td class="blue">xxx</td>
    1.90 +        <td class="green"></td>
    1.91 +        <td class="green">xxx</td>
    1.92 +      </tr></tbody>
    1.93 +    </table>
    1.94 +    <table cellspacing=0 cellpadding=0>
    1.95 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
    1.96 +      <tbody><tr>
    1.97 +        <td class="blue"></td>
    1.98 +        <td class="green">xxx</td>
    1.99 +        <td class="green">xxx</td>
   1.100 +      </tr></tbody>
   1.101 +    </table>
   1.102 +    <table cellspacing=0 cellpadding=0>
   1.103 +      <colgroup><col class="a"/><col/><col class="c"/></colgroup>
   1.104 +      <tbody><tr>
   1.105 +        <td class="blue">xxx</td>
   1.106 +        <td class="green">xxx</td>
   1.107 +        <td class="green">xxx</td>
   1.108 +      </tr></tbody>
   1.109 +    </table>
   1.110 +  </body>
   1.111 +</html>

mercurial