layout/reftests/bugs/281241-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     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