summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/paintedlayer-recycling-8-ref.html
blob: 6023ddefba16c5a53168923aa3dc556e6b6ecd95 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>PaintedLayer recycling should use the right translation</title>
<style>
body {
  overflow: hidden;
  background-color: grey;
}

.fixed {
  position: fixed;
  width: 800px;
  height: 800px;
}

.container {
  position: relative;
  top: 50px;
  left: 50px;
  width: 400px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.0);
}

.not-transformed {
  background-color: lightblue;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

.transformed {
  position: relative;
  top: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
  background: red;
  transform: scale(1.5);
}
</style>
</head>
<body>
  <div class="fixed">
    <div class="container">
      <div class="not-transformed"></div>
      <div class="transformed"></div>
    </div>
  </div>
</body>
</html>