tenfourfox/layout/base/tests/preserve3d_sorting_hit_testing_iframe.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

33 lines
524 B
HTML

<!DOCTYPE HTML>
<title>preserve-3d hit testing</title>
<style>
#stage {
}
#parent {
-moz-transform-style: preserve-3d;
}
#big {
width: 1000px;
height: 1000px;
background-color: #995C7F;
-moz-transform: rotatey(45deg);
}
#small {
width: 100px;
height: 100px;
background-color: #835A99;
-moz-transform: translate3d(600px, 200px, 0px);
}
</style>
<body>
<div id="stage">
<div id="parent">
<div id="small"></div>
<div id="big"></div>
</div>
</div>