6 background-color: gray;
7 border-radius:
200px
0px
200px
0px;
12 <h3>It passes if:
</h3>
14 <li>the canvas content has rounded corners (top-left and bottom-right)
</li>
15 <li>gray background is not visible
</li>
17 <canvas id=
"theCanvas" width=
"257" height=
"257"></canvas>
19 if (window
.internals
) {
20 internals
.settings
.setAccelerated2dCanvasEnabled(true);
22 var context
= theCanvas
.getContext('2d');
23 context
.fillStyle
= 'green';
24 context
.fillRect(0, 0, theCanvas
.width
, theCanvas
.width
);