layout/tables/crashtests/388700-1.html

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     1 <html>
     3 <head>
     4 <script>
     6 function boom()
     7 {
     8   document.body.style.direction = "rtl";
     9   tbody = document.getElementById("tbody");
    10   tbody.contentEditable = "true";
    11   tbody.focus();
    12 }
    14 </script>
    15 </head>
    17 <body onload="boom();">
    19 <table border="1">
    20   <tbody>
    21     <tr>
    22       <td>
    23         <table border="1" style="border-collapse: collapse;"><tbody id="tbody"><tr></tr>
    24           <tr>
    25             <td></td>
    26           </tr>
    27         </table>
    28       </td>
    29     </tr>
    30   </tbody>
    31 </table>
    33 </body>
    34 </html>

mercurial