chromium/third_party/blink/web_tests/external/wpt/css/css-overflow/paint-containment-svg.html

<!doctype html>
<meta charset="utf-8">
<title>overflow-clip-margin applies to svg when paint containment is specified</title>
<link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip">
<link rel="author" title="Khushal Sagar" href="mailto:[email protected]">
<link rel="match" href="paint-containment-svg-ref.html">
<style>
  svg {
    width: 100px;
    height: 100px;
    overflow: visible;
    contain: paint;
    overflow-clip-margin: 10px;
  }
</style>
<svg>
  <rect width="150" height="150" fill="green"></rect>
</svg>