diff options
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/misc/svg.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Base/res/html/misc/svg.html b/Base/res/html/misc/svg.html index 0d02d71ed4..d3ad1fdfc6 100644 --- a/Base/res/html/misc/svg.html +++ b/Base/res/html/misc/svg.html @@ -47,6 +47,9 @@ <g transform="translate(450 450) rotate(-30)"> <rect x="0" y="0" width="120" height="60" rx="15" fill="none" stroke="purple" stroke-width="9" /> </g> + + <!-- Based on https://svgwg.org/svg2-draft/shapes.html#CircleElement --> + <circle cx="100" cy="550" r="40" fill="red" stroke="blue" stroke-width="4" /> </svg> </body> </html> |