summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/overflow-hidden-1-ref.html
blob: 6f62611d712d20e414834dbb1dfdf3a485aba5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html><head>
<style type="text/css">
	.stage{
		perspective:  700px;
		overflow: hidden;
		width: 260px;
		height: 260px;
		display: block;
	}
	
	.box {
		width: 170px;
		height: 170px;
		background-color: red;
		display:  block;
		transform: rotate3d(0,1,0, 50deg) translatey(20px);
	}
	
	</style>
</head>

<body id="body">
	<div class="stage">
		<div class="box"></div>
	</div>
</body></html>