layout/reftests/bugs/379361-3-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 <html>
michael@0 2 <body>
michael@0 3
michael@0 4 <li>Tables have width 500px.
michael@0 5 <li>Yellow cells have width 200px.
michael@0 6 <li>Green cells are auto-width.
michael@0 7 <li>Blue cells have colspan = 2 and, in test case, have various specified widths.
michael@0 8
michael@0 9 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 10 <tr>
michael@0 11 <td style="width: 200px; background: yellow"></td>
michael@0 12 <td style="background: lightgreen">Here are some words.</td>
michael@0 13 </tr>
michael@0 14 <tr>
michael@0 15 <td style="background: lightblue" colspan="2">10 px</td>
michael@0 16 </tr>
michael@0 17 </table>
michael@0 18 <br/>
michael@0 19
michael@0 20 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 21 <tr>
michael@0 22 <td style="width: 200px; background: yellow"></td>
michael@0 23 <td style="background: lightgreen">Here are some words.</td>
michael@0 24 </tr>
michael@0 25 <tr>
michael@0 26 <td style="background: lightblue" colspan="2">50 px</td>
michael@0 27 </tr>
michael@0 28 </table>
michael@0 29 <br/>
michael@0 30
michael@0 31 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 32 <tr>
michael@0 33 <td style="width: 200px; background: yellow"></td>
michael@0 34 <td style="background: lightgreen">Here are some words.</td>
michael@0 35 </tr>
michael@0 36 <tr>
michael@0 37 <td style="background: lightblue" colspan="2">100 px</td>
michael@0 38 </tr>
michael@0 39 </table>
michael@0 40 <br/>
michael@0 41
michael@0 42 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 43 <tr>
michael@0 44 <td style="width: 200px; background: yellow"></td>
michael@0 45 <td style="background: lightgreen">Here are some words.</td>
michael@0 46 </tr>
michael@0 47 <tr>
michael@0 48 <td style="background: lightblue" colspan="2">384 px</td>
michael@0 49 </tr>
michael@0 50 </table>
michael@0 51 <br/>
michael@0 52
michael@0 53 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 54 <tr>
michael@0 55 <td style="width: 200px; background: yellow"></td>
michael@0 56 <td style="background: lightgreen">Here are some words.</td>
michael@0 57 </tr>
michael@0 58 <tr>
michael@0 59 <td style="background: lightblue" colspan="2">385 px</td>
michael@0 60 </tr>
michael@0 61 </table>
michael@0 62 <br/>
michael@0 63
michael@0 64 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 65 <tr>
michael@0 66 <td style="width: 200px; background: yellow"></td>
michael@0 67 <td style="background: lightgreen">Here are some words.</td>
michael@0 68 </tr>
michael@0 69 <tr>
michael@0 70 <td style="background: lightblue" colspan="2">390 px</td>
michael@0 71 </tr>
michael@0 72 </table>
michael@0 73 <br/>
michael@0 74
michael@0 75 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 76 <tr>
michael@0 77 <td style="width: 200px; background: yellow"></td>
michael@0 78 <td style="background: lightgreen">Here are some words.</td>
michael@0 79 </tr>
michael@0 80 <tr>
michael@0 81 <td style="background: lightblue" colspan="2">500 px</td>
michael@0 82 </tr>
michael@0 83 </table>
michael@0 84 <br/>
michael@0 85
michael@0 86 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 87 <tr>
michael@0 88 <td style="width: 200px; background: yellow"></td>
michael@0 89 <td style="background: lightgreen">Here are some words.</td>
michael@0 90 </tr>
michael@0 91 <tr>
michael@0 92 <td style="background: lightblue" colspan="2">600 px</td>
michael@0 93 </tr>
michael@0 94 </table>
michael@0 95 <br/>
michael@0 96
michael@0 97 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 98 <tr>
michael@0 99 <td style="width: 200px; background: yellow"></td>
michael@0 100 <td style="background: lightgreen">Here are some words.</td>
michael@0 101 </tr>
michael@0 102 <tr>
michael@0 103 <td style="background: lightblue" colspan="2">900 px</td>
michael@0 104 </tr>
michael@0 105 </table>
michael@0 106 <br/>
michael@0 107
michael@0 108 </table>
michael@0 109 <br/>
michael@0 110
michael@0 111 <table width="500px" cellspacing="0" cellpadding="0">
michael@0 112 <tr>
michael@0 113 <td style="width: 200px; background: yellow"></td>
michael@0 114 <td style="background: lightgreen">Here are some words.</td>
michael@0 115 </tr>
michael@0 116 <tr>
michael@0 117 <td style="background: lightblue" colspan="2">1500 px</td>
michael@0 118 </tr>
michael@0 119 </table>
michael@0 120 <br/>
michael@0 121
michael@0 122 </body>
michael@0 123 </html>

mercurial