<!DOCTYPE html><!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --><metacharset="UTF-8"><title>Canvas test: 2d.imageData.put.clip</title><scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script><scriptsrc="/html/canvas/resources/canvas-tests.js"></script><linkrel="stylesheet"href="/html/canvas/resources/canvas-tests.css"><bodyclass="show_output"><h1>2d.imageData.put.clip</h1><pclass="desc">putImageData() is not affected by clipping regions</p><pclass="output">Actual output:</p><canvasid="c"class="output"width="100"height="50"><pclass="fallback">FAIL (fallback content)</p></canvas><pclass="output expectedtext">Expected output:<p><imgsrc="/images/green-100x50.png"class="output expected"id="expected"alt=""><ulid="d"></ul><script>vart=async_test("putImageData() is not affected by clipping regions");_addTest(function(canvas,ctx){ctx.fillStyle='#0f0';ctx.fillRect(0,0,100,50)varimgdata=ctx.getImageData(0,0,100,50);ctx.fillStyle='#f00';ctx.fillRect(0,0,100,50)ctx.beginPath();ctx.rect(0,0,50,50);ctx.clip();ctx.putImageData(imgdata,0,0);_assertPixelApprox(canvas,25,25,0,255,0,255,2);_assertPixelApprox(canvas,75,25,0,255,0,255,2);});</script>