tor-browser

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

961887-2-ref.html (413B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8">
      4 <title>Make sure that we don't pull background colors into container layers that have effects applied on them</title>
      5 
      6 <style>
      7 
      8 #outer {
      9  background-color: white;
     10  border: 1px solid black;
     11 }
     12 
     13 #outer > div {
     14  margin: 20px;
     15  border: 1px solid black;
     16  height: 20px;
     17 }
     18 
     19 </style>
     20 
     21 <div id="outer">
     22  <div id="inner1"></div>
     23  <div id="inner2"></div>
     24 </div>