layout/reftests/table-dom/insertCellsExpandZeroRowspan.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 PUBLIC "-//W3C//DTD HTML 4.0//EN" 
     2 "http://www.w3.org/TR/REC-html40/strict.dtd">
     4 <HEAD>
     5 <SCRIPT src=tableDom.js>
     6 </SCRIPT>
     7 <SCRIPT>
     9 function doIt() {
    10   insertCellAt(0, 1, 1, 1);
    11   insertCellAt(0, 1, 1, 1);
    12   insertCellAt(1, 1, 1, 1);
    13   insertCellAt(1, 1, 1, 1);
    14 }
    15 </SCRIPT>  
    16 </HEAD>
    17 <BODY onload="doIt()">
    18 <table bgcolor=orange border>
    19  <tr>
    20   <td>c11</td><td rowspan ="0">c12</td>
    21  </tr>
    22  <tr>
    23   <td>c21</td>
    24  </tr>
    25  <tr>
    26   <td>c31</td>
    27  </tr>
    29 </table>
    30 </BODY></HTML>

mercurial