summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-z-index.html
blob: 05e8eebeb540c775581a040111e2111df39d13fd (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
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Element hidden by z-index</title>

<style>
  * { position: relative }

  #overlay,
  #hidden {
    height: 50px;
    width: 50px;
  }

  #overlay {
    background: blue;

    z-index: 1;
  }

  #hidden {
    background: red;
    top: -50px;

    z-index: -1;
  }
</style>

<div id="overlay"></div>
<div id="hidden"></div>