tor-browser

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

font-size-monospace-adjust.html (441B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://crbug.com/1086082">
      3 <link rel="match" href="font-size-monospace-adjust-ref.html">
      4 <style>
      5  textarea {
      6    font-size: 3em;
      7    transition: margin-bottom 1e10s steps(2, start);
      8    margin-bottom: 10px;
      9  }
     10 
     11  .margin {
     12    margin-bottom: 20px;
     13  }
     14 </style>
     15 <textarea id=textarea>Textarea</textarea>
     16 <script>
     17  document.documentElement.offsetTop;
     18  textarea.classList.toggle('margin');
     19 </script>