summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/text-style-01a.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/text-style-01a.svg')
-rw-r--r--layout/reftests/svg/text-style-01a.svg29
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/svg/text-style-01a.svg b/layout/reftests/svg/text-style-01a.svg
new file mode 100644
index 0000000000..4e8fc8ea35
--- /dev/null
+++ b/layout/reftests/svg/text-style-01a.svg
@@ -0,0 +1,29 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<svg xmlns="http://www.w3.org/2000/svg" onload="m();">
+
+<title>Testcase for style changes</title>
+
+<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=395155 -->
+
+<style id="s" type="text/css">
+* { fill: red; }
+</style>
+
+<script>
+function m()
+{
+ var s = document.getElementById("s");
+ s.appendChild(document.createTextNode("tspan { fill: green }"));
+}
+</script>
+
+<text>
+ <tspan x="10" y="50">
+ This should be green
+ </tspan>
+</text>
+
+</svg>