12 object, img, input[
type=
"image"], canvas, embed, iframe {
14 border:
10px solid rgba(
0,
0,
0,
0.5);
16 background-color: red;
17 background-clip: content-box;
18 border-radius:
100px
50px
10px;
26 if (window
.testRunner
) {
27 testRunner
.dumpAsTextWithPixelResults();
28 testRunner
.setPluginsEnabled(false);
33 <!-- Replaced elements with border-radius should clip to the content edge curve. -->
36 <object data=
"resources/square-blue-100x100.png"></object>
40 <canvas id=
"testCanvas"></canvas>
42 var ctx
= testCanvas
.getContext('2d');
43 ctx
.fillStyle
= "rgb(0,0,255)";
44 ctx
.fillRect(0, 0, 1000, 1000);
49 <input type=
"image" src=
"resources/square-blue-100x100.png">
53 <img src=
"resources/square-blue-100x100.png">
57 <iframe src=
"resources/square-blue-100x100.png"></iframe>
61 <embed src=
"resources/square-blue-100x100.png"></embed>