tor-browser

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

bug1349571.html (663B)


      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 1349571</title>
      9  <style type="text/css">
     10 html,body {
     11  color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
     12 }
     13 
     14 .container {
     15  display: grid;
     16  grid-template-columns: 1fr;
     17  border: 3px solid;
     18  width: 500px;
     19 }
     20 
     21 .responsive-container {
     22  padding-bottom: 50%;
     23  height: 0;
     24  background: lightgrey;
     25 }
     26 
     27  </style>
     28 </head>
     29 <body>
     30 
     31 <div class="container">
     32  <div>
     33    <div class="responsive-container"></div>
     34  </div>
     35 </div>
     36 
     37 </body>
     38 </html>