overflow-clip-margin-svg.html (481B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>overflow-clip-margin applies to svg</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="overflow-clip-margin-svg-ref.html"> 7 <style> 8 svg { 9 width: 100px; 10 height: 100px; 11 overflow-clip-margin: 10px; 12 } 13 </style> 14 <svg> 15 <rect width="150" height="150" fill="green"></rect> 16 </svg>