chromium/third_party/blink/web_tests/external/wpt/css/css-backgrounds/background-clip/clip-border-area-multiple-backgrounds-ref.html

<!DOCTYPE html>
<html>
<head>
<style>
    .test {
        display: inline-block;
        margin: 20px;
        width: 300px;
        height: 200px;
        box-sizing: border-box;
        border: 50px dotted blue;
        background-clip: border-box;
        background-color: red;
        background-image: url(../resources/green-100.png);
    }
</style>
</head>
<body>

<div class="test"></div>

</body>
</html>