summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/layers/2d.layer.global-states.filter.blending.no-shadow.rotation-expected.html
blob: 3af6b863edde3d476287c20b02b88f542d7169cc (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.global-states.filter.blending.no-shadow.rotation</title>
<h1 style="font-size: 20px;">2d.layer.global-states.filter.blending.no-shadow.rotation</h1>
<p class="desc">Checks that layers with filters correctly use global render states.</p>

<div style="display: grid; grid-gap: 4px;
            grid-template-columns: repeat(2, max-content);
            font-size: 13px; text-align: center;">
<span>
  <div>no-globalAlpha</div>
  <canvas id="canvas0" width="90" height="90" style="outline: 1px solid">
    <p class="fallback">FAIL (fallback content)</p>
  </canvas>
  <script type="module">
    const canvas = document.getElementById("canvas0");
    const ctx = canvas.getContext('2d');

    const svg = `
      <svg xmlns="http://www.w3.org/2000/svg"
            width="90" height="90"
            color-interpolation-filters="sRGB">
        <filter id="filter" x="-100%" y="-100%" width="300%" height="300%">
          <feDropShadow dx="5" dy="5" stdDeviation="0" flood-color="#00f" />
          <feComponentTransfer>
            <feFuncA type="table" tableValues="0 0.8"></feFuncA>
          </feComponentTransfer>
        </filter>
        <g filter="url(#filter)">
          <rect x="10" y="25" width="40" height="50" fill="rgba(255, 0, 0, 1)"/>
          <rect x="30" y="5" width="50" height="40" fill="rgba(0, 255, 0, 1)"/>
        </g>
      </svg>`;

    const img = new Image();
    img.width = 90;
    img.height = 90;
    img.onload = () => {
      ctx.translate(50, 40);
      ctx.rotate(Math.PI);
      ctx.translate(-45, -45);

      ctx.fillStyle = 'rgba(128, 128, 128, 1)';
      ctx.fillRect(20, 15, 50, 50);

      // No globalAlpha.
      ctx.globalCompositeOperation = 'multiply';
      // No shadow.

      ctx.drawImage(img, 0, 0);
    };
    img.src = 'data:image/svg+xml;base64,' + btoa(svg);
  </script>
</span>

<span>
  <div>globalAlpha</div>
  <canvas id="canvas1" width="90" height="90" style="outline: 1px solid">
    <p class="fallback">FAIL (fallback content)</p>
  </canvas>
  <script type="module">
    const canvas = document.getElementById("canvas1");
    const ctx = canvas.getContext('2d');

    const svg = `
      <svg xmlns="http://www.w3.org/2000/svg"
            width="90" height="90"
            color-interpolation-filters="sRGB">
        <filter id="filter" x="-100%" y="-100%" width="300%" height="300%">
          <feDropShadow dx="5" dy="5" stdDeviation="0" flood-color="#00f" />
          <feComponentTransfer>
            <feFuncA type="table" tableValues="0 0.8"></feFuncA>
          </feComponentTransfer>
        </filter>
        <g filter="url(#filter)">
          <rect x="10" y="25" width="40" height="50" fill="rgba(255, 0, 0, 1)"/>
          <rect x="30" y="5" width="50" height="40" fill="rgba(0, 255, 0, 1)"/>
        </g>
      </svg>`;

    const img = new Image();
    img.width = 90;
    img.height = 90;
    img.onload = () => {
      ctx.translate(50, 40);
      ctx.rotate(Math.PI);
      ctx.translate(-45, -45);

      ctx.fillStyle = 'rgba(128, 128, 128, 1)';
      ctx.fillRect(20, 15, 50, 50);

      ctx.globalAlpha = 0.75;
      ctx.globalCompositeOperation = 'multiply';
      // No shadow.

      ctx.drawImage(img, 0, 0);
    };
    img.src = 'data:image/svg+xml;base64,' + btoa(svg);
  </script>
</span>

</div>