layout/reftests/transform-3d/perspective-origin-4a.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html lang="en">
     3 <head>
     4   <title>Testcase for bug 770629</title>
     5   <style>
     7 .outer {
     8   position: absolute;
     9   left: 100px;
    10   -moz-transform: scale(0.5,1);
    11   -moz-perspective: 200px; 
    12   -moz-perspective-origin: 50% 0px;
    13 }
    15 .inner {
    16   width: 100px;
    17   height: 100px;
    18   background: blue;
    19   -moz-transform: rotateY(0deg);
    20 }
    22   </style>
    23 </head>
    24 <body>
    25   <div class="outer"> 
    26     <div class="inner"></div> 
    27   </div>
    28 </body>
    29 </html>

mercurial