mirror of
https://github.com/servo/servo.git
synced 2025-06-28 11:03:39 +01:00
18 lines
557 B
HTML
18 lines
557 B
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: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>
|