<!DOCTYPE html><!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --><metacharset="UTF-8"><title>Canvas test: 2d.path.roundrect.2.radii.2.double</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.path.roundrect.2.radii.2.double</h1><pclass="desc">Verify that when two radii are given to roundRect(), the second radius, specified as a double, applies to the top-right and bottom-left corners.</p><pclass="output">Actual output:</p><canvasid="c"class="output"width="100"height="50"><pclass="fallback">FAIL (fallback content)</p></canvas><ulid="d"></ul><script>vart=async_test("Verify that when two radii are given to roundRect(), the second radius, specified as a double, applies to the top-right and bottom-left corners.");_addTest(function(canvas,ctx){ctx.fillStyle='#f00';ctx.fillRect(0,0,100,50);ctx.roundRect(0,0,100,50,[0,20]);ctx.fillStyle='#0f0';ctx.fill();_assertPixel(canvas,1,1,0,255,0,255);_assertPixel(canvas,98,1,255,0,0,255);_assertPixel(canvas,98,48,0,255,0,255);_assertPixel(canvas,1,48,255,0,0,255);});</script>