layout/reftests/bugs/445142-2-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 <!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 border-spacing: 10px 0;
michael@0 14 margin-bottom: 2px;
michael@0 15 padding: 0 10px;
michael@0 16 }
michael@0 17
michael@0 18 td { color: black; background: yellow; }
michael@0 19 td + td { background: aqua; }
michael@0 20 td + td + td { background: fuchsia; }
michael@0 21
michael@0 22 </style>
michael@0 23 </head>
michael@0 24 <body>
michael@0 25
michael@0 26 <table>
michael@0 27 <tr>
michael@0 28 <td style="width: 460px">100px</td>
michael@0 29 </tr>
michael@0 30 </table>
michael@0 31
michael@0 32 <table>
michael@0 33 <tr>
michael@0 34 <td style="width: 500px">500px</td>
michael@0 35 </tr>
michael@0 36 </table>
michael@0 37
michael@0 38 <table>
michael@0 39 <tr>
michael@0 40 <td style="width: 600px">600px</td>
michael@0 41 </tr>
michael@0 42 </table>
michael@0 43
michael@0 44 <table>
michael@0 45 <tr>
michael@0 46 <td style="width: 150px">100px</td>
michael@0 47 <td style="width: 300px">200px</td>
michael@0 48 </tr>
michael@0 49 </table>
michael@0 50
michael@0 51 <table>
michael@0 52 <tr>
michael@0 53 <td style="width: 150px">150px</td>
michael@0 54 <td style="width: 300px">300px</td>
michael@0 55 </tr>
michael@0 56 </table>
michael@0 57
michael@0 58 <table>
michael@0 59 <tr>
michael@0 60 <td style="width: 460px">20%</td>
michael@0 61 </tr>
michael@0 62 </table>
michael@0 63
michael@0 64 <table>
michael@0 65 <tr>
michael@0 66 <td style="width: 460px">100%</td>
michael@0 67 </tr>
michael@0 68 </table>
michael@0 69
michael@0 70 <table>
michael@0 71 <tr>
michael@0 72 <td style="width: 460px">120%</td>
michael@0 73 </tr>
michael@0 74 </table>
michael@0 75
michael@0 76 <table>
michael@0 77 <tr>
michael@0 78 <td style="width: 150px">20%</td>
michael@0 79 <td style="width: 300px">40%</td>
michael@0 80 </tr>
michael@0 81 </table>
michael@0 82
michael@0 83 <table>
michael@0 84 <tr>
michael@0 85 <td style="width: 150px">30%</td>
michael@0 86 <td style="width: 300px">60%</td>
michael@0 87 </tr>
michael@0 88 </table>
michael@0 89
michael@0 90 <table>
michael@0 91 <tr>
michael@0 92 <td style="width: 90px">20%</td>
michael@0 93 <td style="width: 360px">100px</td>
michael@0 94 </tr>
michael@0 95 </table>
michael@0 96
michael@0 97 <table>
michael@0 98 <tr>
michael@0 99 <td style="width: 88px">20%</td>
michael@0 100 <td style="width: 100px">100px</td>
michael@0 101 <td style="width: 252px">div</td>
michael@0 102 </tr>
michael@0 103 </table>
michael@0 104
michael@0 105 <table>
michael@0 106 <tr>
michael@0 107 <td style="width: 450px">20%</td>
michael@0 108 <td style="width: 0"><div style="width: 0">0</div></td>
michael@0 109 </tr>
michael@0 110 </table>
michael@0 111
michael@0 112 <table>
michael@0 113 <tr>
michael@0 114 <td style="width: 450px">20%</td>
michael@0 115 <td style="width: 0"><div style="width: 0">0%</div></td>
michael@0 116 </tr>
michael@0 117 </table>
michael@0 118
michael@0 119 <table>
michael@0 120 <tr>
michael@0 121 <td style="width: 450px">100px</td>
michael@0 122 <td style="width: 0"><div style="width: 0">0</div></td>
michael@0 123 </tr>
michael@0 124 </table>
michael@0 125
michael@0 126 <table>
michael@0 127 <tr>
michael@0 128 <td style="width: 450px">100px</td>
michael@0 129 <td style="width: 0"><div style="width: 0">0%</div></td>
michael@0 130 </tr>
michael@0 131 </table>
michael@0 132
michael@0 133 <table>
michael@0 134 <tr>
michael@0 135 <td style="width: 225px">0</td>
michael@0 136 <td style="width: 225px">0</td>
michael@0 137 </tr>
michael@0 138 </table>
michael@0 139
michael@0 140 <table>
michael@0 141 <tr>
michael@0 142 <td style="width: 225px">0%</td>
michael@0 143 <td style="width: 225px">0</td>
michael@0 144 </tr>
michael@0 145 </table>
michael@0 146
michael@0 147 </body>
michael@0 148 </html>

mercurial