tor-browser

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

shape-outside-infinite-crash.html (546B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://issues.chromium.org/issues/379143305">
      3 <style>
      4 .test {
      5  width: 200px; overflow: hidden; line-height: 0;
      6 }
      7 .float {
      8  float: left;
      9  width: 100px;
     10  height: 100px;
     11  background: orange;
     12  shape-outside: polygon(0 0, 100% 100%, 0 100%);
     13  clip-path: polygon(0 0, 100% 100%, 0 100%);
     14 }
     15 span {
     16  display: inline-block;
     17  width: 90px;
     18  background: rebeccapurple;
     19 }
     20 </style>
     21 <div class="test">
     22  <div class="float"></div>
     23  <span style="height: 20px;"></span><span style="height: 22px;"></span>
     24 </div>