summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/src/webgpu/web_platform/reftests/canvas_colorspace_bgra8unorm.https.html
blob: c910c97b1dda05eb9c7c8aa06419b5ed2a7e233c (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_bgra8unorm</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 bgra8norm 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('bgra8unorm');
  </script>
  <body></body>
</html>