overflow-clip-y-visible-x-svg.html (544B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Overflow: can have different clip and visible value in x/y directions with 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-y-visible-x-svg-ref.html"> 7 <style> 8 svg { 9 width: 100px; 10 height: 100px; 11 overflow-x: visible; 12 overflow-y: clip; 13 } 14 </style> 15 <svg> 16 <rect width="150" height="150" fill="green"></rect> 17 </svg>