tor-browser

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

transition-table-row-group-crash.html (537B)


      1 <!DOCTYPE html>
      2 <title>Crash when transitioning on a table-row-group element with pending substitution</title>
      3 <link rel="help" href="https://crbug.com/444818221">
      4 <style>
      5  optgroup {
      6    display: contents;
      7    writing-mode: vertical-lr;
      8  }
      9  option {
     10    display: table-row-group;
     11    transition: color 1s;
     12    --p: 2px;
     13    padding-inline: var(--p);
     14  }
     15 </style>
     16 <select>
     17  <optgroup>
     18    <option id="opt"></option>
     19  </optgroup>
     20 </select>
     21 <script>
     22  opt.offsetTop;
     23  opt.style.setProperty("color", "red");
     24  opt.offsetTop;
     25 </script>