summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/paint-containment-svg.html
blob: bf2939f70901db3cfa9755e1acaa87c67929bc18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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:khushalsagar@chromium.org">
<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>