summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.html
blob: 498418c292c0f294acd64daa5dc941dca0714944 (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
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<link rel="match" href="2d.filter.canvasFilterObject.gaussianBlur.tentative-expected.html">
<title>Canvas test: 2d.filter.canvasFilterObject.gaussianBlur.tentative</title>
<h1 style="font-size: 20px;">2d.filter.canvasFilterObject.gaussianBlur.tentative</h1>
<p class="desc">Test CanvasFilter() with gaussianBlur.</p>

<div style="display: grid; grid-gap: 4px;
            grid-template-columns: repeat(5, max-content);
            font-size: 13px; text-align: center;">
<span>
  <div>x-only</div>
  <canvas id="canvas0" width="100" height="100" 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');

    ctx.fillStyle = 'teal';
    ctx.filter = new CanvasFilter({
        name: 'gaussianBlur',
        stdDeviation: [4, 0],
    });
    ctx.fillRect(25, 25, 50, 50);
  </script>
</span>

<span>
  <div>mostly-x</div>
  <canvas id="canvas1" width="100" height="100" 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');

    ctx.fillStyle = 'teal';
    ctx.filter = new CanvasFilter({
        name: 'gaussianBlur',
        stdDeviation: [4, 1],
    });
    ctx.fillRect(25, 25, 50, 50);
  </script>
</span>

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

    ctx.fillStyle = 'teal';
    ctx.filter = new CanvasFilter({
        name: 'gaussianBlur',
        stdDeviation: [4, 4],
    });
    ctx.fillRect(25, 25, 50, 50);
  </script>
</span>

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

    ctx.fillStyle = 'teal';
    ctx.filter = new CanvasFilter({
        name: 'gaussianBlur',
        stdDeviation: [1, 4],
    });
    ctx.fillRect(25, 25, 50, 50);
  </script>
</span>

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

    ctx.fillStyle = 'teal';
    ctx.filter = new CanvasFilter({
        name: 'gaussianBlur',
        stdDeviation: [0, 4],
    });
    ctx.fillRect(25, 25, 50, 50);
  </script>
</span>

</div>