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

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <html>
michael@0 2 <head>
michael@0 3 <style>
michael@0 4 table { width: 400px; height: 25px; font-size: 10px; }
michael@0 5 td.blue { background: lightblue; color: rgba(0,0,0,0) }
michael@0 6 td.green { background: lightgreen; color: rgba(0,0,0,0) }
michael@0 7 col.a { width: 100px; }
michael@0 8 col.c { width: 100px; }
michael@0 9 </style>
michael@0 10 </head>
michael@0 11 <body>
michael@0 12 With colspan:
michael@0 13 <table cellspacing=0 cellpadding=0>
michael@0 14 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 15 <tbody><tr>
michael@0 16 <td class="blue"></td>
michael@0 17 <td class="green" colspan="2"></td>
michael@0 18 </tr></tbody>
michael@0 19 </table>
michael@0 20 <table cellspacing=0 cellpadding=0>
michael@0 21 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 22 <tbody><tr>
michael@0 23 <td class="blue">xxx</td>
michael@0 24 <td class="green" colspan="2"></td>
michael@0 25 </tr></tbody>
michael@0 26 </table>
michael@0 27 <table cellspacing=0 cellpadding=0>
michael@0 28 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 29 <tbody><tr>
michael@0 30 <td class="blue"></td>
michael@0 31 <td class="green" colspan="2">xxx</td>
michael@0 32 </tr></tbody>
michael@0 33 </table>
michael@0 34 <table cellspacing=0 cellpadding=0>
michael@0 35 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 36 <tbody><tr>
michael@0 37 <td class="blue">xxx</td>
michael@0 38 <td class="green" colspan="2">xxx</td>
michael@0 39 </tr></tbody>
michael@0 40 </table>
michael@0 41
michael@0 42 Without colspan:
michael@0 43 <table cellspacing=0 cellpadding=0>
michael@0 44 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 45 <tbody><tr>
michael@0 46 <td class="blue"></td>
michael@0 47 <td class="green"></td>
michael@0 48 <td class="green"></td>
michael@0 49 </tr></tbody>
michael@0 50 </table>
michael@0 51 <table cellspacing=0 cellpadding=0>
michael@0 52 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 53 <tbody><tr>
michael@0 54 <td class="blue">xxx</td>
michael@0 55 <td class="green"></td>
michael@0 56 <td class="green"></td>
michael@0 57 </tr></tbody>
michael@0 58 </table>
michael@0 59 <table cellspacing=0 cellpadding=0>
michael@0 60 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 61 <tbody><tr>
michael@0 62 <td class="blue"></td>
michael@0 63 <td class="green">xxx</td>
michael@0 64 <td class="green"></td>
michael@0 65 </tr></tbody>
michael@0 66 </table>
michael@0 67 <table cellspacing=0 cellpadding=0>
michael@0 68 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 69 <tbody><tr>
michael@0 70 <td class="blue"></td>
michael@0 71 <td class="green"></td>
michael@0 72 <td class="green">xxx</td>
michael@0 73 </tr></tbody>
michael@0 74 </table>
michael@0 75 <table cellspacing=0 cellpadding=0>
michael@0 76 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 77 <tbody><tr>
michael@0 78 <td class="blue">xxx</td>
michael@0 79 <td class="green">xxx</td>
michael@0 80 <td class="green"></td>
michael@0 81 </tr></tbody>
michael@0 82 </table>
michael@0 83 <table cellspacing=0 cellpadding=0>
michael@0 84 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 85 <tbody><tr>
michael@0 86 <td class="blue">xxx</td>
michael@0 87 <td class="green"></td>
michael@0 88 <td class="green">xxx</td>
michael@0 89 </tr></tbody>
michael@0 90 </table>
michael@0 91 <table cellspacing=0 cellpadding=0>
michael@0 92 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 93 <tbody><tr>
michael@0 94 <td class="blue"></td>
michael@0 95 <td class="green">xxx</td>
michael@0 96 <td class="green">xxx</td>
michael@0 97 </tr></tbody>
michael@0 98 </table>
michael@0 99 <table cellspacing=0 cellpadding=0>
michael@0 100 <colgroup><col class="a"/><col/><col class="c"/></colgroup>
michael@0 101 <tbody><tr>
michael@0 102 <td class="blue">xxx</td>
michael@0 103 <td class="green">xxx</td>
michael@0 104 <td class="green">xxx</td>
michael@0 105 </tr></tbody>
michael@0 106 </table>
michael@0 107 </body>
michael@0 108 </html>

mercurial