summaryrefslogtreecommitdiff
path: root/Base/res
diff options
context:
space:
mode:
authorMacDue <macdue@dueutil.tech>2023-05-19 22:09:27 +0100
committerAndreas Kling <kling@serenityos.org>2023-05-20 08:52:19 +0200
commitac104f7845c8e534f3f9bf873e1ff0ead6bdeec0 (patch)
tree20750e4dcbbe6c29ef5b1682b2b3ca9d19b24acc /Base/res
parent1d91a5624251c49ebcce16435eccab48783c7ad2 (diff)
downloadserenity-ac104f7845c8e534f3f9bf873e1ff0ead6bdeec0.zip
Base: Use fill-opacity and stroke-opacity in SVG example
Diffstat (limited to 'Base/res')
-rw-r--r--Base/res/html/misc/svg.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/res/html/misc/svg.html b/Base/res/html/misc/svg.html
index 5488b8b178..d247116b7d 100644
--- a/Base/res/html/misc/svg.html
+++ b/Base/res/html/misc/svg.html
@@ -13,7 +13,7 @@
<body>
<svg width="800" height="1200">
<path d="M 10 10 h 100 l -50 80 z" fill="green" stroke="black" stroke-width="3"></path>
- <path d="M 60 10 h 100 l -50 80 z" fill="red" stroke="blue" stroke-width="3"></path>
+ <path d="M 60 10 h 100 l -50 80 z" fill="red" fill-opacity="50%" stroke="blue" stroke-opacity="50%" stroke-width="3"></path>
<path d="M 110 10 h 100 l -50 80 z" class="css"></path>
<path d="M 135 275 v -100 a 100,100 0 0,0 -100,100 z" fill="yellow" stroke="blue" stroke-width="3"></path>