summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/offscreen/filters/2d.filter.layers.convolveMatrix.exceptions.worker.js
blob: fa3be89ba2f1a3ee9e665913f3297d38dbe95a82 (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
// DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py.
// OffscreenCanvas test in a worker:2d.filter.layers.convolveMatrix.exceptions
// Description:Test exceptions on CanvasFilter() convolveMatrix
// Note:

importScripts("/resources/testharness.js");
importScripts("/html/canvas/resources/canvas-tests.js");

var t = async_test("Test exceptions on CanvasFilter() convolveMatrix");
var t_pass = t.done.bind(t);
var t_fail = t.step_func(function(reason) {
    throw reason;
});
t.step(function() {

  var canvas = new OffscreenCanvas(100, 50);
  var ctx = canvas.getContext('2d');

  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix'}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', divisor: 2}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: null}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: 1}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[1, 0], [0]]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[1, 'a'], [0]]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[1, 0], 0]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[1, 0], [0, Infinity]]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: []}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [1]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [1, 2, 3, 4]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[], []]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[1, 2], []]}}); });
  assert_throws_js(TypeError, function() { ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[], [1, 2]]}}); });
  // This should not throw an error
  ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[]]}});
  ctx.endLayer();
  ctx.beginLayer({filter:
    {name: 'convolveMatrix', kernelMatrix: [[1]]}});
  ctx.endLayer();
  t.done();
});
done();