tor-browser

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

transition-large-word-spacing-001.html (573B)


      1 <!DOCTYPE HTML>
      2 <title>CSS Test (Transitions): Transition of large word-spacing value</title>
      3 <link rel="author" title="L. David Baron" href="https://dbaron.org/">
      4 <link rel="author" title="Google" href="http://www.google.com/">
      5 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1266769">
      6 <meta name="assert" content="This should not crash.">
      7 
      8 <div id="d" style="transition-duration: 1s"></div>
      9 <script>
     10 
     11 let d = document.getElementById("d");
     12 d.offsetTop;
     13 d.style.wordSpacing = "100000000000000000000000000000000000000000000000000in";
     14 
     15 </script>