summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/mask-image/mask-repeat-3-svg.html
blob: b7d64ac36560e43ea8a209b595ef010644877342 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Masking: mask-repeat: repeated mask layer image, SVG content</title>
<link rel="help" href="https://www.w3.org/TR/css-masking-1/#the-mask-repeat">
<link rel="match" href="mask-repeat-3-ref.html">
<meta name="assert" content="Test checks whether repeated mask layer works correctly or not.">
<style type="text/css">
  rect.frame {
    x: -0.5px;
    y: -0.5px;
    width: 151px;
    height: 151px;
    stroke: black;
    fill: none;
  }

  rect.masked {
    width: 150px;
    height: 150px;
    fill: purple;
    mask-image: url(support/50x50-opaque-blue.svg);
    mask-position: left top;
  }

  #round {
    mask-repeat: round;
  }
  #round-x {
    mask-repeat: round no-repeat;
  }
  #round-y {
    mask-repeat: no-repeat round;
  }
</style>
<svg height="456">
  <g transform="translate(1 1)">
    <rect class="masked" id="round"/>
    <rect class="frame"/>
  </g>
  <g transform="translate(1 153)">
    <rect class="masked" id="round-x"/>
    <rect class="frame"/>
  </g>
  <g transform="translate(1 305)">
    <rect class="masked" id="round-y"/>
    <rect class="frame"/>
  </g>
</svg>