chromium/third_party/blink/web_tests/fast/borders/border-image-border-radius.html

<!DOCTYPE html>
<html>
<head>
    <style>
        div {
            border-width: 21px 30px 30px 21px;
            width: 75px;
            height: 75px;
            margin: 10px;
            display: inline-block;
            -webkit-border-radius: 10px;
            border-style: solid;
        }

        div.rr {
            -webkit-border-image: url("resources/border-image.png") 21 30 30 21 repeat repeat;
        }

        div.rs {
            -webkit-border-image: url("resources/border-image.png") 21 30 30 21 repeat stretch;
        }

        div.sr {
            -webkit-border-image: url("resources/border-image.png") 21 30 30 21 stretch repeat;
        }

        div.ss {
            -webkit-border-image: url("resources/border-image.png") 21 30 30 21 stretch stretch;
        }
    </style>
</head>
<body>
    This test checks to make sure the border-image is not clipped by the border radius.
    <div class="rr"></div>
    <div class="rs"></div>
    <br>
    <div class="sr"></div>
    <div class="ss"></div>
</body>
</html>