diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-02-11 16:14:58 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-11 21:38:27 +0100 |
commit | 21bdcee3c3ee604742ea6524a320e0cf5ad65abb (patch) | |
tree | c319c012349fd18c49e1ffb932e38b4a2faa11ee /Base/res/html/misc | |
parent | 1dde6a0a2bfef387c464a35de6d1b7332c4437b5 (diff) | |
download | serenity-21bdcee3c3ee604742ea6524a320e0cf5ad65abb.zip |
LibWeb: Add SVG `<circle>` element and test case :^)
Diffstat (limited to 'Base/res/html/misc')
-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> |