Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/shapes/reftests/ellipse-auto-rx-clip-path.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>SVG ellipse with auto rx/ry inside <clipPath> resolves per SVG 2</title>
<link rel="match" href="ellipse-auto-rx-clip-path-ref.html">
<meta name="assert" content="An ellipse with auto rx (or auto ry) used as the geometry of a <clipPath> must clip identically to an ellipse with the resolved explicit value, per SVG 2 ยง10.4.">
<svg width="320" height="160">
<defs>
<clipPath id="auto-rx"><ellipse cx="80" cy="80" rx="auto" ry="50"/></clipPath>
<clipPath id="auto-ry"><ellipse cx="240" cy="80" rx="50" ry="auto"/></clipPath>
</defs>
<rect x="0" y="0" width="160" height="160" fill="green" clip-path="url(#auto-rx)"/>
<rect x="160" y="0" width="160" height="160" fill="green" clip-path="url(#auto-ry)"/>
</svg>
</html>