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