tor-browser

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

position-sticky-scroll-offset-clamp-crash.html (481B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1498297">
      3 <style>
      4 * {
      5  margin-top: 100px;
      6  padding-left: 100px;
      7  position: sticky;
      8  bottom: 0px;
      9 }
     10 </style>
     11 <select id="select1" multiple="multiple" style="writing-mode: vertical-rl">
     12  <optgroup id="optgroup">text</optgroup>
     13 </select>
     14 <select id="select2" >text</select>
     15 <script>
     16 document.body.offsetTop;
     17 select2.add(optgroup);
     18 document.body.offsetTop;
     19 select1.length = 1;
     20 </script>