layout/reftests/z-index/z-index-1-ref.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.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <html>
michael@0 3 <head>
michael@0 4 <style>
michael@0 5 .container {
michael@0 6 position:absolute;
michael@0 7 width:400px;
michael@0 8 height:100px;
michael@0 9 background-color:yellow;
michael@0 10 z-index:0;
michael@0 11 }
michael@0 12 .container > div {
michael@0 13 height:100px;
michael@0 14 margin-bottom:-100px;
michael@0 15 }
michael@0 16 .negative {
michael@0 17 width:380px;
michael@0 18 background-color:blue;
michael@0 19 }
michael@0 20 .block {
michael@0 21 width:360px;
michael@0 22 background-color:purple;
michael@0 23 }
michael@0 24 .float {
michael@0 25 width:340px;
michael@0 26 background-color:green;
michael@0 27 }
michael@0 28 .inline {
michael@0 29 width:320px;
michael@0 30 background-color:pink;
michael@0 31 }
michael@0 32 #outline {
michael@0 33 height:60px;
michael@0 34 width:260px;
michael@0 35 border:20px solid gray;
michael@0 36 }
michael@0 37 .positioned {
michael@0 38 width:280px;
michael@0 39 background-color:magenta;
michael@0 40 }
michael@0 41 .positive {
michael@0 42 width:260px;
michael@0 43 background-color:orange;
michael@0 44 }
michael@0 45 </style>
michael@0 46 </head>
michael@0 47 <body>
michael@0 48 <div class="container">
michael@0 49 <div class="negative"></div>
michael@0 50 <div class="block"></div>
michael@0 51 <div class="float"></div>
michael@0 52 <div class="inline"></div>
michael@0 53 <div id="outline"></div>
michael@0 54
michael@0 55 <div class="positioned"></div>
michael@0 56 <div class="positive"></div>
michael@0 57 </div>
michael@0 58 </body>
michael@0 59 </html>

mercurial