dom/plugins/test/reftest/div-alpha-zindex.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <!doctype html>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 #one {
     6   position:absolute;
     7   left:0px; top:0px;
     8   width:400px; height:400px;
     9   background-color: rgb(0,255,0);
    10   opacity:0.6;
    11   z-index:1;
    12 }
    13 #two {
    14   position:absolute;
    15   top:100px; left:100px;
    16   width:200px; height:200px;
    17   z-index:0;
    18   background-color: rgb(255,0,0);
    19 }
    20 </style>
    21 </head>
    22 <body>
    23 <div id="two"></div>
    24 <div id="one"></div>
    25 </body>
    26 </html>

mercurial