blob: 4658ccceaf2455202c91c1244312524a1e92f84a [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.fillStyle.parse.svg-1</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<body>
<p id="passtext">Pass</p>
<p id="failtext">Fail</p>
<p class="output">These images should be identical:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<p class="output expectedtext">Expected output:<p><img src="2d.fillStyle.parse.svg-1.png" class="output expected" id="expected" alt="">
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
ctx.fillStyle = '#f00';
ctx.fillStyle = 'gray';
ctx.fillRect(0, 0, 100, 50);
_assertPixel(canvas, 50,25, 128,128,128,255, "50,25", "128,128,128,255");
});
</script>