tor-browser

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

426629-1-ref.html (528B)


      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('target1');
      9 t1.style.width="20px";
     10 }
     11 </script>
     12 </head>
     13 <body onload="doTest();">
     14 <table border style="table-layout:fixed; width:400px" id="target1">
     15 <tr><td>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</td></tr>
     16 </table>
     17 </body>
     18 </html>