summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-blending/background-blending-image-color-gif.html
blob: c68d617322cb793f030e1a253205538432bfec8d (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>
<html>
<style>
.reftest {
  width: 100px;
  height: 100px;
  background-size: 100px 100px, 100px 100px;
  background-repeat: no-repeat;
}

.blend {
  background-color: rgb(255,255,0);
  background-blend-mode: difference;
}

.gif {
  background-image: url('as-image/red_green.gif');
}

</style>

<body>
	<div class="reftest blend gif"></div>
</body>
</html>