layout/reftests/transform-3d/sorting-2a.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <html>
     2     <head>
     3         <style type="text/css">
     4         #parent {
     5             -moz-transform-style: preserve-3d;
     6         }
     8         #one {
     9           width: 100px;
    10           height: 100px;
    11           background-color: #00FF00;
    12           -moz-transform: translatez(10px);
    13         }
    15         #two {
    16           width: 100px;
    17           height: 100px;
    18           background-color: red;
    19           -moz-transform: translatez(-10px) translatey(-50px);
    20         }
    21         </style>
    22     </head>
    23     <body>
    24         <div id="parent">
    25                 <div id="one"></div>
    26                 <div id="two"></div>
    27         </div>
    28     </body>
    29 </html>

mercurial