summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/animations/background-color-animation-with-images-ref.html
blob: ba414f7b349d6a3de8b10eb539de48b408365f2a (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
<!DOCTYPE html>
<style>
.container1 {
  width: 200px;
  height: 200px;
  background-image: url("../support/green.png"), url("../support/red.png");
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-color: rgb(0, 0, 199);
}
.container2 {
  width: 200px;
  height: 200px;
  background-image: url("../support/green.png"), url("../support/red.png");
  background-size: 100px 100px;
  background-repeat: no-repeat;
}
.container3 {
  width: 100px;
  height: 100px;
  background-image: url("../support/green.png"), url("../support/red.png");
}
</style>
</style>
<body>
  <div class="container1"></div>
  <div class="container2"></div>
  <div class="container3"></div>
  <div class="container3"></div>
</body>