summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/animations/background-color-animation-with-mask-ref.html
blob: 6cb20f12d13c853871a5f6fdc389a6192f9b4502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<style>
.container {
  width: 100px;
  height: 100px;
  -webkit-mask-image: url('../resources/stripes-100.png');
  -webkit-mask-size: 100px 100px;
  -webkit-mask-repeat: no-repeat;
  mask-image: url('../resources/stripes-100.png');
  mask-size: 100px 100px;
  mask-repeat: no-repeat;
  background-color:  rgb(0, 0, 150);
}
</style>
</style>
<body>
  <div class="container"></div>
</body>