tor-browser

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

1443027-3-ref.html (781B)


      1 <!DOCTYPE html>
      2 <html lang="en"><head>
      3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta charset="utf-8">
      4 <title>Bug 1443027 - Test merging across multiple paints</title>
      5 
      6 <style>
      7 
      8 body { opacity: 0.9; }
      9 
     10 div {
     11  position: absolute;
     12  transform: translatez(1px);
     13 }
     14 
     15 #A {
     16  left: 250px;
     17  top: 50px;
     18  width: 100px;
     19  height: 100px;
     20  background-color: red;
     21 }
     22 
     23 #B {
     24  left: 200px;
     25  top: 0px;
     26  width: 100px;
     27  height: 100px;
     28  background-color: yellow;
     29 }
     30 
     31 #C {
     32  left: 0px;
     33  top: 0px;
     34  width: 100px;
     35  height: 100px;
     36  background-color: green;
     37 }
     38 
     39 #D {
     40  left: 80px;
     41  top: 20px;
     42  width: 140px;
     43  height: 100px;
     44  background-color: blue;
     45 }
     46 
     47 </style>
     48 </head>
     49 <body>
     50 <div id="A"></div>
     51 <div id="B"></div>
     52 <div id="D"></div>
     53 <div id="C"></div>
     54 </body></html>