Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/svg/painting/inner-outer-svg-overflow-auto.html
<!doctype html> <title>overflow: auto clips overflow on both inner and outer SVG</title> <link rel="help" href="https://github.com/w3c/svgwg/issues/1072"> <link rel="match" href="inner-outer-svg-overflow-auto-ref.html"> <svg style="overflow: auto" height="90px" width="90px"> <svg style="overflow: visible" height="90px" width="90px" x="0" y="0"> <rect height="100px" width="100px" fill="red" x="-5px" y="-5px" /> <rect height="90px" width="90px" fill="green" /> </svg> </svg> <br> <svg style="overflow: visible" height="90px" width="90px"> <svg style="overflow: auto" height="90px" width="90px" x="0" y="0"> <rect height="100px" width="100px" fill="red" x="-5px" y="-5px" /> <rect height="90px" width="90px" fill="green" /> </svg> </svg>
/svg/painting/inner-outer-svg-overflow-auto-ref.html
<!doctype html> <title>CSS test reference</title> <svg height="90px" width="90px"> <rect height="90px" width="90px" fill="green" /> </svg> <br> <svg height="90px" width="90px"> <rect height="90px" width="90px" fill="green" /> </svg>