layout/reftests/table-width/conflicting-percent-widths-1-ref.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <!DOCTYPE HTML>
     2 <html>
     3 <head>
     4 <title>Conflicting percent widths on table cells</title>
     5 <style type="text/css">
     7 table, td {
     8   border-spacing: 0;
     9   border: none;
    10   padding: 0;
    11 }
    13 </style>
    14 </head>
    15 <body>
    17 <table>
    18   <tr>
    19     <td style="background: yellow" width="200">x</td>
    20     <td style="background: aqua" width="200">x</td>
    21   </tr>
    22   <tr>
    23     <td style="background: blue" width="200">x</td>
    24     <td style="background: fuchsia" width="200">x</td>
    25   </tr>
    26 </table>
    28 </body>
    29 </html>

mercurial