chromium/third_party/blink/web_tests/fast/borders/borderRadiusArcs01.html

<html>
<head>
    <style type="text/css">
        div {
            width: 200px;
            height: 200px;
            border: 10px solid cyan;
            border-bottom-color: blue;
            border-right-color: red;
            border-top-right-radius: 40px;
            border-bottom-left-radius: 60px;
            border-bottom-right-radius: 30px;
            background-color:lime;
        }
    </style>
</head>
<body>
    <div>
        &nbsp;
    </div>
</body>
</html>