chromium/third_party/blink/web_tests/css3/masking/mask-repeat-space-border.html

<!DOCTYPE html>
<html lang="en">
    <head>
        <style>
            #back {
                width: 1000px;
                height: 600px;
                background-color: green;
            }
            #front {
                width: 800px;
                height: 400px;
                background-color: red;
                border: 50px solid blue;
                padding: 50px;
                -webkit-mask-image: linear-gradient(45deg, black, transparent 100%);
                -webkit-mask-size: 121px 70px;
                -webkit-mask-repeat: repeat space;
                -webkit-mask-origin: border-box;
                -webkit-mask-clip: border-box;
            }
        </style>
    </head>

    <body>
        <div id="back">
            <div id="front" />
        </div>
    </body>
</html>