chromium/third_party/blink/web_tests/fast/borders/border-radius-with-box-shadow.html

<!doctype html>
<head>
<style>
.fo_menu{
    width: 549px;
    height: 45px;
    background-color: #000000;
    border-top-left-radius: 130px 70px;
    border-top-right-radius: 130px 70px;
    margin:50ppx;
    box-shadow: 0px 0px 1px 1px #000000;
}
</style>
</head>
<body>
<!-- [bug 106404] https://bugs.webkit.org/show_bug.cgi?id=106404 -->
<!-- border-radius with box-shadow is not rendered correctly. -->
<!-- This test is for checking whether the above bug is correctly -->
<!-- fixed or not. -->
<div class="fo_menu">
</div>
</body>