summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1443027-ref.html
blob: 13f9f825c5877e3aee142cb15377c6613743567c (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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta charset="utf-8">
<title>Bug 1443027 - Test merging across multiple paints</title>

<style>

body { opacity: 0.9; }

div {
  position: absolute;
  transform: translatez(1px);
}

#A {
  left: 250px;
  top: 50px;
  width: 100px;
  height: 100px;
  background-color: red;
}

#B {
  left: 200px;
  top: 0px;
  width: 100px;
  height: 100px;
  background-color: yellow;
}

#C {
  left: 0px;
  top: 0px;
  width: 100px;
  height: 100px;
  background-color: green;
}

</style>
</head>
<body>
<div id="A"></div>
<div id="B"></div>
<div id="C"></div>
</body></html>