summaryrefslogtreecommitdiffstats
path: root/layout/reftests/z-index/stacking-context-perspective.html
blob: a9b99c86fc3187478a7ad1a3249347c4b37c5185 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE HTML>
<meta charset="UTF-8">
<title>Does 'perspective' create a stacking context?</title>
<link rel="stylesheet" href="stacking-context-common.css">
<style>
.perspective {
  -webkit-perspective: 200px;
  perspective: 200px;
}
</style>
<div class="contain">
  <div class="maybesc perspective">
    <div class="inner1"></div>
    <div class="inner3"></div>
  </div>
  <div class="intruder"></div>
</div>