summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/web_platform/reftests/canvas_composite_alpha_rgba16float_premultiplied_copy.https.html
blob: ed722013c15495c0f1aafc62aa585313985124b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html class="reftest-wait">
  <title>WebGPU canvas_composite_alpha_rgba16float_premultiplied</title>
  <meta charset="utf-8" />
  <link rel="help" href="https://gpuweb.github.io/gpuweb/" />
  <meta
    name="assert"
    content="WebGPU canvas should have correct orientation, components, scaling, filtering, color space"
  />
  <link rel="match" href="./ref/canvas_composite_alpha_premultiplied-ref.html" />
  <meta name=fuzzy content="maxDifference=0-2;totalPixels=0-400">
  <style>
    body { background-color: #F0E68C; }
    #c-canvas { background-color: #8CF0E6; }
  </style>
  <canvas id="c-body" width="20" height="20" style="width: 20px; height: 20px;"></canvas>
  <canvas id="c-canvas" width="20" height="20" style="width: 20px; height: 20px;"></canvas>
  <script type="module">
    import { run } from './canvas_composite_alpha.html.js';
    run('rgba16float', 'premultiplied', 'copy');
  </script>
</html>