aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/iframe-scroll-stacking.html
blob: a554bede5269b2541a9b9ed2527844ccf2d70ee2 (plain) (blame)
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>
<style>
  body {
    margin: 0;
  }

  iframe {
    display: block;
    width: 300px;
    height: 300px;
    position: absolute;
    background: white;
  }

  .i1 {
    top: 50px;
    left: 50px;
  }

  .i2 {
    top: 100px;
    left: 100px;
  }
</style>

<iframe class="i1" src="lipsum.html"></iframe>
<iframe class="i2" src="lipsum.html"></iframe>