gecko-dev/layout/reftests/bugs/1081185-1.html
Robert O'Callahan 6e80dcb31b Bug 1081185. Traverse rect edges when searching for w=0 crossings instead of taking diagonals. r=mattwoodrow
--HG--
extra : rebase_source : c87d145abea750cf0d8b02f0ea387ec9148e6be1
2014-10-22 11:01:00 +13:00

33 lines
487 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin-top:100px;
opacity:0.5;
}
.container {
width: 120px;
height: 120px;
perspective: 100px;
transform-style: preserve-3d;
}
.bottom {
width: 120px;
height: 120px;
position: absolute;
background-color: rgba(255,0,255,1);
transform: translateZ(60px) translateY(120px) rotateX(-90deg);
transform-origin: left top;
}
</style>
</head>
<body>
<div class="container">
<div class="bottom"></div>
</div>
</body>
</html>