tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

426629-1.html (519B)


      1 <!DOCTYPE HTML PUBLIC "-//W#C//DTD HTML 4.01 Transitional//EN"
      2 "http://www.w3.org/TR/html4/loose.dtd">
      3 <html>
      4 <head>
      5 <title> fixed layout not triggered by changing width from auto to coordinate</title>
      6 <script type="text/javascript">
      7 function doTest(){
      8 t1 = document.getElementById('target2');
      9 t1.style.width="20px";
     10 
     11 }
     12 </script>
     13 </head>
     14 <body onload="doTest();">
     15 <table border style="table-layout:fixed;" id="target2">
     16 <tr><td>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</td></tr>
     17 </table>
     18 </body>
     19 </html>