layout/reftests/bugs/413286-5.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><style>
michael@0 3 table { width: 600px }
michael@0 4 td.smallSpec { width: 100px; }
michael@0 5 td.smallPct { width: 10%; }
michael@0 6 td.pink { background: pink }
michael@0 7 td.teal { background: teal }
michael@0 8 </style></head>
michael@0 9 <body>
michael@0 10
michael@0 11 <h2>Other column fixed-width</h2>
michael@0 12
michael@0 13 <table cellspacing="0" cellpadding="0">
michael@0 14 <tr>
michael@0 15 <td class="smallSpec pink">100</td>
michael@0 16 <td class="teal"/>
michael@0 17 </tr>
michael@0 18 </table>
michael@0 19
michael@0 20 <h2>Other column percent-width</h2>
michael@0 21
michael@0 22 <table cellspacing="0" cellpadding="0">
michael@0 23 <tr>
michael@0 24 <td class="smallPct pink">10%</td>
michael@0 25 <td class="teal"/>
michael@0 26 </tr>
michael@0 27 </table>
michael@0 28
michael@0 29 <h2>Other column fixed-width; zero column spanned by colspan (crossing other column)</h2>
michael@0 30
michael@0 31 <table cellspacing="0" cellpadding="0">
michael@0 32 <tr>
michael@0 33 <td class="smallSpec pink">100</td>
michael@0 34 <td class="teal"/>
michael@0 35 </tr>
michael@0 36 <tr><td colspan="2"/></tr>
michael@0 37 </table>
michael@0 38
michael@0 39 <h2>Other column percent-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="smallPct pink">10%</td>
michael@0 44 <td class="teal"/>
michael@0 45 </tr>
michael@0 46 <tr><td colspan="2"/></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="teal" colspan="2"/>
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="teal" colspan="2"/>
michael@0 64 </tr>
michael@0 65 </table>
michael@0 66
michael@0 67 </body>
michael@0 68 </html>

mercurial