summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/preserves3d-nested-filter-1-ref.html
blob: 836525d8763ca918f853f8041b96a063da1f5a86 (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
<!DOCTYPE html>
<html>
<head>
<title>Green square</title>
<style>
.filter {
  filter: brightness(0.75);
}

.container {
  width: 200px;
  height: 200px;

  background-color: green;
}

.square {
  position: absolute;

  width: 200px;
  height: 200px;

  background-color: green;
}
</style>
</head>
<body>

<div class="filter">
  <div class="container">
    <div class="square"></div>
  </div>
</div>

</body>
</html>