layout/reftests/bugs/445142-1b.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 <!--
michael@0 28
michael@0 29 A copy of 445142-1a.html where one of the widths is specified on a col
michael@0 30 instead of a td.
michael@0 31
michael@0 32 -->
michael@0 33
michael@0 34 <table>
michael@0 35 <col style="width: 100px">
michael@0 36 <tr>
michael@0 37 <td>100px</td>
michael@0 38 </tr>
michael@0 39 </table>
michael@0 40
michael@0 41 <table>
michael@0 42 <col style="width: 700px">
michael@0 43 <tr>
michael@0 44 <td>700px</td>
michael@0 45 </tr>
michael@0 46 </table>
michael@0 47
michael@0 48 <table>
michael@0 49 <col style="width: 600px">
michael@0 50 <tr>
michael@0 51 <td>600px</td>
michael@0 52 </tr>
michael@0 53 </table>
michael@0 54
michael@0 55 <table>
michael@0 56 <col>
michael@0 57 <col style="width: 200px">
michael@0 58 <tr>
michael@0 59 <td style="width: 100px">100px</td>
michael@0 60 <td>200px</td>
michael@0 61 </tr>
michael@0 62 </table>
michael@0 63
michael@0 64 <table>
michael@0 65 <col style="width: 150px">
michael@0 66 <col>
michael@0 67 <tr>
michael@0 68 <td style="width: 9999px">150px</td>
michael@0 69 <td style="width: 300px">300px</td>
michael@0 70 </tr>
michael@0 71 </table>
michael@0 72
michael@0 73 <table>
michael@0 74 <col style="width: 20%">
michael@0 75 <tr>
michael@0 76 <td>20%</td>
michael@0 77 </tr>
michael@0 78 </table>
michael@0 79
michael@0 80 <table>
michael@0 81 <col style="width: 100%">
michael@0 82 <tr>
michael@0 83 <td>100%</td>
michael@0 84 </tr>
michael@0 85 </table>
michael@0 86
michael@0 87 <table>
michael@0 88 <col style="width: 120%">
michael@0 89 <tr>
michael@0 90 <td>120%</td>
michael@0 91 </tr>
michael@0 92 </table>
michael@0 93
michael@0 94 <table>
michael@0 95 <col style="width: 20%">
michael@0 96 <col>
michael@0 97 <tr>
michael@0 98 <td>20%</td>
michael@0 99 <td style="width: 40%">40%</td>
michael@0 100 </tr>
michael@0 101 </table>
michael@0 102
michael@0 103 <table>
michael@0 104 <col>
michael@0 105 <col style="width: 60%">
michael@0 106 <tr>
michael@0 107 <td style="width: 30%">30%</td>
michael@0 108 <td style="width: 9999px">60%</td>
michael@0 109 </tr>
michael@0 110 </table>
michael@0 111
michael@0 112 <table>
michael@0 113 <col style="width: 20%">
michael@0 114 <col>
michael@0 115 <tr>
michael@0 116 <td>20%</td>
michael@0 117 <td style="width: 100px">100px</td>
michael@0 118 </tr>
michael@0 119 </table>
michael@0 120
michael@0 121 <table>
michael@0 122 <col>
michael@0 123 <col style="width: 100px">
michael@0 124 <col>
michael@0 125 <tr>
michael@0 126 <td style="width: 20%">20%</td>
michael@0 127 <td style="width: 5%">100px</td>
michael@0 128 <td><div style="width: 100px">div</div></td>
michael@0 129 </tr>
michael@0 130 </table>
michael@0 131
michael@0 132 <table>
michael@0 133 <col style="width: 20%">
michael@0 134 <col>
michael@0 135 <tr>
michael@0 136 <td>20%</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 <col>
michael@0 143 <col style="width: 0%">
michael@0 144 <tr>
michael@0 145 <td style="width: 20%">20%</td>
michael@0 146 <td>0%</td>
michael@0 147 </tr>
michael@0 148 </table>
michael@0 149
michael@0 150 <table>
michael@0 151 <col>
michael@0 152 <col style="width: 0">
michael@0 153 <tr>
michael@0 154 <td style="width: 100px">100px</td>
michael@0 155 <td>0</td>
michael@0 156 </tr>
michael@0 157 </table>
michael@0 158
michael@0 159 <table>
michael@0 160 <col style="width: 100px">
michael@0 161 <col>
michael@0 162 <tr>
michael@0 163 <td>100px</td>
michael@0 164 <td style="width: 0%">0%</td>
michael@0 165 </tr>
michael@0 166 </table>
michael@0 167
michael@0 168 <table>
michael@0 169 <col style="width: 0">
michael@0 170 <col>
michael@0 171 <tr>
michael@0 172 <td>0</td>
michael@0 173 <td style="width: 0">0</td>
michael@0 174 </tr>
michael@0 175 </table>
michael@0 176
michael@0 177 <table>
michael@0 178 <col>
michael@0 179 <col style="width: 0">
michael@0 180 <tr>
michael@0 181 <td style="width: 0%">0%</td>
michael@0 182 <td>0</td>
michael@0 183 </tr>
michael@0 184 </table>
michael@0 185
michael@0 186 </body>
michael@0 187 </html>

mercurial