tor-browser

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

bug1350925.html (626B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>Testcase for bug 1350925</title>
      9  <style type="text/css">
     10 html, body, .grid { margin: 0; }
     11 
     12 .grid {
     13  display: grid;
     14  overflow: auto;
     15  height: 100%;
     16  width: 100%;
     17 }
     18 
     19  </style>
     20 </head>
     21 <body>
     22 
     23 <div style="height:300px; width:100px">
     24 <div class="grid"><div style="width:10px;height:700px"></div></div>
     25 </div>
     26 
     27 <div style="width:300px; height:100px">
     28 <div class="grid"><div style="height:10px;width:700px"></div></div>
     29 </div>
     30 
     31 </body>
     32 </html>