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

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

michael@0 1 <html>
michael@0 2 <head><style>
michael@0 3 table { width: 600px }
michael@0 4 td.smallSpec { width: 100px; }
michael@0 5 td.bigSpec { width: 500px; }
michael@0 6 td.smallPct { width: 10%; }
michael@0 7 td.bigPct { width: 90%; }
michael@0 8 td.pink { background: pink }
michael@0 9 td.teal { background: teal }
michael@0 10 </style></head>
michael@0 11 <body>
michael@0 12
michael@0 13 <h2>Other column fixed-width</h2>
michael@0 14
michael@0 15 <table cellspacing="0" cellpadding="0">
michael@0 16 <tr>
michael@0 17 <td class="smallSpec pink">100</td>
michael@0 18 <td class="bigSpec teal"/>
michael@0 19 </tr>
michael@0 20 </table>
michael@0 21
michael@0 22 <h2>Other column percent-width</h2>
michael@0 23
michael@0 24 <table cellspacing="0" cellpadding="0">
michael@0 25 <tr>
michael@0 26 <td class="smallPct pink">10%</td>
michael@0 27 <td class="bigPct teal"/>
michael@0 28 </tr>
michael@0 29 </table>
michael@0 30
michael@0 31 <h2>Other column fixed-width; zero column spanned by colspan (crossing other column)</h2>
michael@0 32
michael@0 33 <table cellspacing="0" cellpadding="0">
michael@0 34 <tr>
michael@0 35 <td class="smallSpec pink">100</td>
michael@0 36 <td class="bigSpec teal"/>
michael@0 37 </tr>
michael@0 38 </table>
michael@0 39
michael@0 40 <h2>Other column percent-width; zero column spanned by colspan (crossing other column)</h2>
michael@0 41
michael@0 42 <table cellspacing="0" cellpadding="0">
michael@0 43 <tr>
michael@0 44 <td class="smallPct pink">10%</td>
michael@0 45 <td class="bigPct teal"/>
michael@0 46 </tr>
michael@0 47 </table>
michael@0 48
michael@0 49 <h2>Other column fixed-width; two zero columns with colspan</h2>
michael@0 50
michael@0 51 <table cellspacing="0" cellpadding="0">
michael@0 52 <tr>
michael@0 53 <td class="smallSpec pink">100</td>
michael@0 54 <td class="bigSpec teal"/>
michael@0 55 </tr>
michael@0 56 </table>
michael@0 57
michael@0 58 <h2>Other column percent-width; two zero columns with colspan</h2>
michael@0 59
michael@0 60 <table cellspacing="0" cellpadding="0">
michael@0 61 <tr>
michael@0 62 <td class="smallPct pink">10%</td>
michael@0 63 <td class="bigPct teal"/>
michael@0 64 </tr>
michael@0 65 </table>
michael@0 66
michael@0 67 </body>
michael@0 68 </html>

mercurial