tor-browser

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

webkit-writing-mode-crash.html (403B)


      1 <!doctype html>
      2 <html class="test-wait">
      3 <link rel="help" href="https://crbug.com/1077501">
      4 <style>
      5  @keyframes test {
      6    from { -webkit-writing-mode: var(--x) }
      7    to { -webkit-writing-mode: var(--y) }
      8  }
      9  div {
     10    animation: test 1s;
     11  }
     12 </style>
     13 <div id=div></div>
     14 <script>
     15 window.onload = () => {
     16  div.offsetTop;
     17  document.documentElement.classList.remove('test-wait');
     18 };
     19 </script>
     20 </html>