blob: 01869706dc046f87c53ea844ec95beeccdba7d72 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<style>
canvas {
background-color: gray;
border-radius: 40px 200px 10px 200px;
padding: 10px;
margin: 20px;
border: 5px solid red;
}
</style>
</head>
<body>
<h3>It passes if:</h3>
<ul>
<li>the 10px gray background is visible around the canvas content</li>
<li>has 5px solid red border</li>
<li>all the corners for border and padding are rounded</li>
<li>the bottom right corner of canvas content is NOT rounded</li>
</ul>
<canvas id="theCanvas" width="257" height="257"></canvas>
<script>
if (window.internals) {
internals.settings.setAccelerated2dCanvasEnabled(true);
}
var context = theCanvas.getContext('2d');
context.fillStyle = 'green';
context.fillRect(0, 0, theCanvas.width, theCanvas.width);
</script>
</body>
</html>