summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/745934-1.html
blob: 59f3b5ca6ca869e3f35838d8e597bcdadaa182db (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
<!DOCTYPE HTML>
<html>
<head>
<style>
div {
    position: absolute;
	top: 200px; left: 200px;
    width: 600px;
    height: 500px;
	background: yellow;
	opacity: 0.3;
	-moz-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-moz-transform: translate(-200px, -200px);
	-webkit-transform: translate(-200px, -200px);
	transform: translate(-200px, -200px);
}
</style>
</head>
<body>
<div></div>
</body>
</html>