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

mercurial