summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/web_platform/reftests/canvas_colorspace_rgba8unorm.https.html
blob: e57e04ef5c8e7eee0a2862b50c887984e9d4a6d4 (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_colorspace_rgba8unorm</title>
  <meta charset="utf-8" />
  <style>
    canvas {
      width: 128px;
      height: 128px;
      margin-right: 5px;
      image-rendering: pixelated;
      image-rendering: crisp-edges;
    }
  </style>
  <link rel="help" href="https://gpuweb.github.io/gpuweb/" />
  <meta name="assert" content="WebGPU rgba8unorm canvas with colorSpace set should be rendered correctly" />
  <link rel="match" href="./ref/canvas_colorspace-ref.html" />
  <script type="module">
    import { runColorSpaceTest } from './canvas_colorspace.html.js';
    runColorSpaceTest('rgba8unorm');
  </script>
  <body></body>
</html>