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

mercurial