layout/reftests/bugs/906199-1-ref.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style>
     5 div {
     6   position:relative;
     7   width:300px;
     8   height:200px;
     9   left:50px;
    10   top:50px;
    11 }
    12 .grandparentdiv {
    13   background:yellow;
    14   overflow:hidden;
    15 }
    16 .childdiv {
    17   background:green;
    18 }
    19 .grandchilddiv {
    20   background:red;
    21 }
    22 </style>
    23 </head>
    24 <body>
    25 <div class="grandparentdiv">
    26   <div class="childdiv">
    27     <div class="grandchilddiv"></div>
    28   </div>
    29 </div>
    30 </body>
    31 </html>

mercurial