summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/906199-1.html
blob: 98f4548a79015a314ab0ae7b31fd964c962410d5 (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
<!DOCTYPE html>
<html>
<head>
<style>
div {
  position:relative;
  width:300px;
  height:200px;
  left:50px;
  top:50px;
  transform-style:preserve-3d;
}
.grandparentdiv {
  background:yellow;
  overflow:hidden;
}
.childdiv {
  background:green;
}
.grandchilddiv {
  background:red;
}
</style>
</head>
<body>
<div class="grandparentdiv">
  <div class="childdiv">
    <div class="grandchilddiv"></div>
  </div>
</div>
</body>
</html>