summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-masking/mask-image/mask-mode-e.html
blob: 3ece03c5b73a6e8592af7854648267c088f50c7f (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Masking: mask-mode with gradient on SVG content</title>
<link rel="help" href="https://www.w3.org/TR/css-masking-1/#propdef-mask-mode">
<link rel="match" href="mask-mode-ref.html">
<meta name="assert" content="Test checks that a linear-gradient() image referenced by mask-image is correct with different mask modes.">
<meta name="fuzzy" content="maxDifference=0-2; totalPixels=0-11800">
<style type="text/css">
  body {
    padding: 0;
    margin: 0;
  }

  rect {
    fill: blue;
    width: 100px;
    height: 100px;
    y: 10px;
  }

  rect.auto {
    x: 10px;
    mask-mode: match-source;
    mask-image: linear-gradient(blue 0%, blue 100%);
  }

  rect.alpha {
    x: 120px;
    mask-mode: alpha;
    mask-image: linear-gradient(blue 0%, blue 100%);
  }

  rect.luminance1 {
    x: 230px;
    mask-mode: luminance;
    mask-image: linear-gradient(blue 0%, blue 100%);
  }

  rect.luminance2 {
    x: 340px;
    mask-mode: luminance;
    mask-image: linear-gradient(red 0%, red 100%);
  }

  rect.luminance3 {
    x: 450px;
    mask-mode: luminance;
    mask-image: linear-gradient(lime 0%, lime 100%);
  }
</style>
<svg width="600">
  <rect class="auto"/>
  <rect class="alpha"/>
  <rect class="luminance1"/>
  <rect class="luminance2"/>
  <rect class="luminance3"/>
</svg>