wpt / css / css-borders / corner-shape / corner-shape-img.html

Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-borders/corner-shape/corner-shape-img.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-borders-4/#corner-shaping">
<link rel="match" href="corner-shape-img-ref.html">
<meta name="fuzzy" content="maxDifference=0-64;totalPixels=0-100">
<style>
    img {
        width: 100px;
        height: 100px;
        border-radius: 25px;
        box-sizing: border-box;
        corner-shape: notch superellipse(3) bevel scoop;
    }
</style>
<img src="/images/green.png">

/css/css-borders/corner-shape/corner-shape-img-ref.html

<!DOCTYPE html>
<style>
    .target {
        width: 100px;
        height: 100px;
        border-radius: 25px;
        box-sizing: border-box;
        background-image: url("/images/green.png");
        corner-shape: notch superellipse(3) bevel scoop;
    }
</style>
<div class=target></div>