paint-containment-svg.html (557B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>overflow-clip-margin applies to svg when paint containment is specified</title> 4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#valdef-overflow-clip"> 5 <link rel="author" title="Khushal Sagar" href="mailto:khushalsagar@chromium.org"> 6 <link rel="match" href="paint-containment-svg-ref.html"> 7 <style> 8 svg { 9 width: 100px; 10 height: 100px; 11 overflow: visible; 12 contain: paint; 13 overflow-clip-margin: 10px; 14 } 15 </style> 16 <svg> 17 <rect width="150" height="150" fill="green"></rect> 18 </svg>