tor-browser

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

514917-1.html (429B)


      1 <!DOCTYPE HTML>
      2 <title>Testcase, bug 514917</title>
      3 <style type="text/css">
      4 
      5 body > div {
      6  overflow: auto; /* to detect too much overflow, which is the bug here */
      7  width: 200px;
      8  height: 200px;
      9 }
     10 
     11 body > div > div {
     12  width: 100px;
     13  height: 100px;
     14  box-shadow: blue 50px 50px;
     15 }
     16 
     17 body > div > div > div {
     18  width: 160px;
     19  height: 160px;
     20  border: medium solid;
     21 }
     22 
     23 </style>
     24 <body>
     25 <div><div><div></div></div></div>
     26 </body>