layout/reftests/bugs/849996-1.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>
     5 #parent {
     6   width: 200px;
     7   height: 200px;
     8   overflow: hidden;
     9   transform: translateX(10px);
    10   background: green;
    11 }
    12 #child {
    13   position: fixed;
    14   top: -10px;
    15   left: -10px;
    16   width: 100px;
    17   height: 100px;
    18   background: red;
    19 }
    20 </style>
    21 </head>
    22 <body>
    23 <div id="parent">
    24   <div id="child"></div>
    25 </div>
    26 </body>
    27 </html>

mercurial