diff options
Diffstat (limited to 'testing/web-platform/tests/svg/geometry/reftests/ellipse-004.svg')
-rw-r--r-- | testing/web-platform/tests/svg/geometry/reftests/ellipse-004.svg | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/geometry/reftests/ellipse-004.svg b/testing/web-platform/tests/svg/geometry/reftests/ellipse-004.svg new file mode 100644 index 0000000000..1c6b132cd6 --- /dev/null +++ b/testing/web-platform/tests/svg/geometry/reftests/ellipse-004.svg @@ -0,0 +1,15 @@ +<svg width="300" height="200" + xmlns="http://www.w3.org/2000/svg" + xmlns:html="http://www.w3.org/1999/xhtml"> + <title>Ellipse coordinates and radii specified using calc</title> + <html:link rel="help" href="https://svgwg.org/svg2-draft/geometry.html"/> + <html:link rel="match" href="ellipse-ref.svg" /> + <style> + ellipse { + fill: blue; + font-size: 40px; + } + </style> + <ellipse cx="calc(80px + 25% - 2em)" cy="calc(80px + 60% - 2em)" + rx="calc(4 * 5%)" ry="calc(5 * 5%)" /> +</svg> |