summaryrefslogtreecommitdiff
path: root/Base/res/html/misc
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-02-11 16:14:58 +0000
committerAndreas Kling <kling@serenityos.org>2022-02-11 21:38:27 +0100
commit21bdcee3c3ee604742ea6524a320e0cf5ad65abb (patch)
treec319c012349fd18c49e1ffb932e38b4a2faa11ee /Base/res/html/misc
parent1dde6a0a2bfef387c464a35de6d1b7332c4437b5 (diff)
downloadserenity-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.html3
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>