summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/canvas/tools/templates/testharness_worker_grid.js
blob: 53c3b69cb669e077e4de85fdbd0cb25e60ed114b (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
{% if timeout %}// META: timeout={{ timeout }}{% endif %}
// DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py.
// OffscreenCanvas test in a worker:{{ name }}
// Description:{{ desc }}
// Note:{% if notes %}<p class="notes">{{ notes }}{% endif +%}

importScripts("/resources/testharness.js");
importScripts("/html/canvas/resources/canvas-tests.js");
{% for variant in worker_variants %}

{% if test_type == 'promise' %}
promise_test(async t => {
{% elif test_type == 'async' %}
async_test(t => {
{% else %}
test(t => {
{% endif %}
  const canvas = new OffscreenCanvas({{
      variant.size[0] }}, {{ variant.size[1] }});
  const ctx = canvas.getContext('2d'{%
      if variant.attributes %}, {{ variant.attributes }}{% endif %});

  {{ variant.code_worker | trim | indent(2)}}
}, "{{ variant.desc | double_quote_escape }}");
{% endfor %}

done();