layout/reftests/transform-3d/perspective-origin-2a.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 <html>
     2 </head>
     3 <style type="text/css">
     4 	.stage{
     5 		-moz-perspective: 100px;
     6         -moz-perspective-origin: 25% 25%;
     7         height:100px;
     8         width:100px;
     9         margin:5px;
    10         padding:5px;
    11         border:5px solid gray;
    12 	}
    14 	.box {
    15         -moz-transform:rotateX(45deg);
    16         height:70px;
    17         width:70px;
    18         background:green;
    19         margin:5px;
    20         padding:5px;
    21         border:5px solid black;
    22 	}
    24 	</style>
    25 </head>
    26 <body>
    27     <div class="stage">
    28         <div class="box"></div>
    29     </div>
    30 </body>
    31 </html>

mercurial