layout/reftests/bugs/413286-6-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; two zero columns with colspan; explicit 0 width on span</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; two zero columns with colspan; explicit 0 width on span</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 explicitly zero-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="pink">100</td>
michael@0 36 </tr>
michael@0 37 </table>
michael@0 38
michael@0 39 <h2>Other column percent-width; zero-column explicitly zero-width; zero column spanned by colspan (crossing other column)</h2>
michael@0 40
michael@0 41 <table cellspacing="0" cellpadding="0">
michael@0 42 <tr>
michael@0 43 <td class="pink">10%</td>
michael@0 44 </tr>
michael@0 45 </table>
michael@0 46
michael@0 47 </body>
michael@0 48 </html>

mercurial