layout/tables/crashtests/366556-1.xhtml

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
     3 <head>
     4 <script>
     6 function boom()
     7 {
     8   var HTML_NS = "http://www.w3.org/1999/xhtml";
     9   document.getElementById("www").appendChild(document.createTextNode('עִבְרִית'));
    10   document.getElementById("yyy").appendChild(document.createElementNS(HTML_NS, 'div'));
    11   document.documentElement.removeAttribute("class")
    12 }
    14 </script>
    15 </head>
    17 <body onload="setTimeout(boom, 30);" style="width: 20em;">
    19 <p>This page should not trigger assertions.</p>
    21   <table border="1">
    22     <tbody>
    23       <tr>
    24         <td>Foo bar baz zap</td>
    25         <td>
    26           <table width="100%" height="100%" border="1">
    27             <tbody>
    28               <tr>
    29                 <td>
    30                 <table border="1">
    31                   <tbody>
    32                     <tr>
    33                       <td><span id="www">This text wraps</span></td>
    34                       <td>Foo</td>
    35                     </tr>
    36                   </tbody>
    37                 </table>
    38                 <div id="yyy">YYY</div>
    39                 </td>
    40               </tr>
    41             </tbody>
    42           </table>
    43         </td>
    44       </tr>
    45     </tbody>
    46   </table>
    48 </body>
    50 </html>

mercurial