layout/reftests/bugs/281241-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
     2 <html>
     3  <head>
     4   <title>col removal</title>
     5   <script type="text/javascript">
     6    function foo ()
     7    {
     8      var out =document.getElementById('outer');
     9      var int   =document.getElementById('inner');
    10      out.removeChild(int);
    11    }
    12   </script>
    13  </head>
    14  <body onload="foo()">
    16   <table border>
    17    <colgroup width="500px" id="outer">
    18     <col width="200px" id="inner">
    19    </colgroup>
    20    <tr><td>&nbsp;</td></tr>
    21   </table>
    22  </body>
    23 </html>

mercurial