tor-browser

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

scrollable-horizontal-margin.html (708B)


      1 <!DOCTYPE HTML>
      2 <html><head>
      3    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
      4    <title>Testcase for bug 1768921</title>
      5    <!-- Previously for bug 724352, but bug 1768921 flips the expectation to ensure that
      6    margin rect is accounted into scrollable overflow. -->
      7    <style type="text/css">
      8 
      9        html,body {
     10            color:black; background-color:white; font-size:16px; padding:0; margin:0;
     11        }
     12 
     13 x1,x2,x3,x4,x5,x6 { display:block; }
     14 x2 { overflow:auto; width:100px; background:grey; }
     15 x4 { width: 70px; margin: 0 20px; }
     16    </style>
     17 </head>
     18 <body>
     19 
     20 <x1><x2 style="height:50px;">
     21  <x4 style="height:20px; background:lime; "></x4>
     22 </x2></x1>
     23 
     24 
     25 </body>
     26 </html>