tor-browser

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

viewport-overflow-hidden-invisible-anchor-crash.html (562B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-anchor-position-1/">
      3 <link rel="help" href="https://crbug.com/391903229">
      4 <style>
      5 html {
      6  overflow: hidden;
      7 }
      8 .anchor, .element {
      9  background: green;
     10  width: 100px;
     11  height: 100px;
     12 }
     13 .anchor {
     14  background: red;
     15  anchor-name: --anchor;
     16 }
     17 .element {
     18  position: absolute;
     19  position-anchor: --anchor;
     20  bottom: anchor(top);
     21  left: 50px;
     22 }
     23 </style>
     24 <div style="height: 1000px"></div>
     25 <div class="element"></div>
     26 <div style="overflow: auto; width: 50px">
     27  <div class="anchor"></div>
     28 </div>