chromium/third_party/blink/web_tests/fast/css/table-border-radius-with-box-shadow-expected.html

<!doctype html>
<html>
<head>
  <style>
    div {
      width: 198px;
      height: 98px;
    }
    .round {
      border-radius: 10px;
    }
    .shadow {
      box-shadow: 0 10px 2px rgba(0, 0, 0, 0.5);
    }
    .border {
      border: 1px solid blue;
    }
  </style>
</head>
<body>
  <div class="shadow border round">
  </div>
</body>
</html>