tor-browser

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

reattach-crash.html (494B)


      1 <!DOCTYPE html>
      2 <title>Chrome had a crash on dynamic style changes on &lt;text></title>
      3 <link rel="help" href="http://crbug.com/1385936">
      4 <style>
      5 #el9 {
      6  background-color: blue;
      7 }
      8 .c3 {
      9  transition-duration:0.2s;
     10  background-color: red !important;
     11  content: '';
     12 }
     13 </style>
     14 <script>
     15 onload = function() {
     16  document.body.offsetTop;
     17  el9.setAttribute('class', 'c3');
     18  document.body.offsetTop;
     19 };
     20 </script>
     21 <body>
     22 <svg xmlns="http://www.w3.org/2000/svg"><text id="el9"></text></svg>
     23 </body>