summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/1035611-1.html
blob: 2d7e7870773ba57579f42cea6bda5d7d60ebd806 (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
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en-US" reftest-zoom="1.0">
<head>
	<title>Testcase, bug 1035611</title>
	<meta charset=UTF-8>
	<style type="text/css">

	#outer1 {
	  width: 500px;
	  height: 100px;
	  overflow:hidden;
	  background: blue;
	}

	#outer2 {
	  width: 250px;
	  height: 100px;
	  perspective: 125px;
	}

	#inner {
	  transform-origin: 0px 0px 70px;
	  transform: rotate3d(0, 1, 0, -54deg);
	  width: 128px;
	  height: 128px;
	  background: orange;
	}
	</style>
</head>
<body>
<div id="outer1">
  <div id="outer2">
    <div id="inner"></div>
  </div>
</div>

</body>
</html>