layout/reftests/bugs/445142-1a.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 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
michael@0 2 "http://www.w3.org/TR/html4/strict.dtd">
michael@0 3 <html lang="en-US">
michael@0 4 <head>
michael@0 5 <title>table-layout: fixed width distribution with unassigned space</title>
michael@0 6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
michael@0 7 <meta http-equiv="Content-Style-Type" content="text/css">
michael@0 8 <style type="text/css">
michael@0 9
michael@0 10 table, td { margin: 0; padding: 0; }
michael@0 11
michael@0 12 table {
michael@0 13 table-layout: fixed;
michael@0 14 width: 600px;
michael@0 15 border-spacing: 0;
michael@0 16 margin-bottom: 2px;
michael@0 17 }
michael@0 18
michael@0 19 td { color: black; background: yellow; }
michael@0 20 td + td { background: aqua; }
michael@0 21 td + td + td { background: fuchsia; }
michael@0 22
michael@0 23 </style>
michael@0 24 </head>
michael@0 25 <body>
michael@0 26
michael@0 27 <table>
michael@0 28 <tr>
michael@0 29 <td style="width: 100px">100px</td>
michael@0 30 </tr>
michael@0 31 </table>
michael@0 32
michael@0 33 <table>
michael@0 34 <tr>
michael@0 35 <td style="width: 700px">700px</td>
michael@0 36 </tr>
michael@0 37 </table>
michael@0 38
michael@0 39 <table>
michael@0 40 <tr>
michael@0 41 <td style="width: 600px">600px</td>
michael@0 42 </tr>
michael@0 43 </table>
michael@0 44
michael@0 45 <table>
michael@0 46 <tr>
michael@0 47 <td style="width: 100px">100px</td>
michael@0 48 <td style="width: 200px">200px</td>
michael@0 49 </tr>
michael@0 50 </table>
michael@0 51
michael@0 52 <table>
michael@0 53 <tr>
michael@0 54 <td style="width: 150px">150px</td>
michael@0 55 <td style="width: 300px">300px</td>
michael@0 56 </tr>
michael@0 57 </table>
michael@0 58
michael@0 59 <table>
michael@0 60 <tr>
michael@0 61 <td style="width: 20%">20%</td>
michael@0 62 </tr>
michael@0 63 </table>
michael@0 64
michael@0 65 <table>
michael@0 66 <tr>
michael@0 67 <td style="width: 100%">100%</td>
michael@0 68 </tr>
michael@0 69 </table>
michael@0 70
michael@0 71 <table>
michael@0 72 <tr>
michael@0 73 <td style="width: 120%">120%</td>
michael@0 74 </tr>
michael@0 75 </table>
michael@0 76
michael@0 77 <table>
michael@0 78 <tr>
michael@0 79 <td style="width: 20%">20%</td>
michael@0 80 <td style="width: 40%">40%</td>
michael@0 81 </tr>
michael@0 82 </table>
michael@0 83
michael@0 84 <table>
michael@0 85 <tr>
michael@0 86 <td style="width: 30%">30%</td>
michael@0 87 <td style="width: 60%">60%</td>
michael@0 88 </tr>
michael@0 89 </table>
michael@0 90
michael@0 91 <table>
michael@0 92 <tr>
michael@0 93 <td style="width: 20%">20%</td>
michael@0 94 <td style="width: 100px">100px</td>
michael@0 95 </tr>
michael@0 96 </table>
michael@0 97
michael@0 98 <table>
michael@0 99 <tr>
michael@0 100 <td style="width: 20%">20%</td>
michael@0 101 <td style="width: 100px">100px</td>
michael@0 102 <td><div style="width: 100px">div</div></td>
michael@0 103 </tr>
michael@0 104 </table>
michael@0 105
michael@0 106 <table>
michael@0 107 <tr>
michael@0 108 <td style="width: 20%">20%</td>
michael@0 109 <td style="width: 0">0</td>
michael@0 110 </tr>
michael@0 111 </table>
michael@0 112
michael@0 113 <table>
michael@0 114 <tr>
michael@0 115 <td style="width: 20%">20%</td>
michael@0 116 <td style="width: 0%">0%</td>
michael@0 117 </tr>
michael@0 118 </table>
michael@0 119
michael@0 120 <table>
michael@0 121 <tr>
michael@0 122 <td style="width: 100px">100px</td>
michael@0 123 <td style="width: 0">0</td>
michael@0 124 </tr>
michael@0 125 </table>
michael@0 126
michael@0 127 <table>
michael@0 128 <tr>
michael@0 129 <td style="width: 100px">100px</td>
michael@0 130 <td style="width: 0%">0%</td>
michael@0 131 </tr>
michael@0 132 </table>
michael@0 133
michael@0 134 <table>
michael@0 135 <tr>
michael@0 136 <td style="width: 0">0</td>
michael@0 137 <td style="width: 0">0</td>
michael@0 138 </tr>
michael@0 139 </table>
michael@0 140
michael@0 141 <table>
michael@0 142 <tr>
michael@0 143 <td style="width: 0%">0%</td>
michael@0 144 <td style="width: 0">0</td>
michael@0 145 </tr>
michael@0 146 </table>
michael@0 147
michael@0 148 </body>
michael@0 149 </html>

mercurial