Bug 1794662 [wpt PR 36401] - Batch-remove unused arguments in _assertPixel and _asser...
[gecko.git] / testing / web-platform / tests / html / canvas / offscreen / compositing / 2d.composite.image.source-over.html
blob1d13b7724836357184bb81cd88d656d7e0ee573d
1 <!DOCTYPE html>
2 <!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
3 <title>OffscreenCanvas test: 2d.composite.image.source-over</title>
4 <script src="/resources/testharness.js"></script>
5 <script src="/resources/testharnessreport.js"></script>
6 <script src="/html/canvas/resources/canvas-tests.js"></script>
8 <h1>2d.composite.image.source-over</h1>
9 <p class="desc"></p>
12 <script>
13 var t = async_test("");
14 var t_pass = t.done.bind(t);
15 var t_fail = t.step_func(function(reason) {
16 throw reason;
17 });
18 t.step(function() {
20 var canvas = new OffscreenCanvas(100, 50);
21 var ctx = canvas.getContext('2d');
24 ctx.fillStyle = 'rgba(0, 255, 255, 0.5)';
25 ctx.fillRect(0, 0, 100, 50);
26 ctx.globalCompositeOperation = 'source-over';
27 var promise = new Promise(function(resolve, reject) {
28 var xhr = new XMLHttpRequest();
29 xhr.open("GET", '/images/yellow75.png');
30 xhr.responseType = 'blob';
31 xhr.send();
32 xhr.onload = function() {
33 resolve(xhr.response);
35 });
36 promise.then(function(response) {
37 createImageBitmap(response).then(bitmap => {
38 ctx.drawImage(bitmap, 0, 0);
39 _assertPixelApprox(canvas, 50,25, 219,255,36,223, 5);
40 }, t_fail);
41 }).then(t_pass, t_fail);
43 });
44 </script>