diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/svg/text/reftests/opacity-ref.svg | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/svg/text/reftests/opacity-ref.svg')
-rw-r--r-- | testing/web-platform/tests/svg/text/reftests/opacity-ref.svg | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/text/reftests/opacity-ref.svg b/testing/web-platform/tests/svg/text/reftests/opacity-ref.svg new file mode 100644 index 0000000000..18c00ab332 --- /dev/null +++ b/testing/web-platform/tests/svg/text/reftests/opacity-ref.svg @@ -0,0 +1,26 @@ +<svg xmlns="http://www.w3.org/2000/svg"> + <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> + <style> + text { + font-size: 50px; + } + </style> + <defs> + <path id="path" d="M100, 120 300, 120"/> + </defs> + <text x="100" y="60" opacity="0.5"> + <tspan>tspan</tspan> + </text> + <text opacity="0.5"> + <textPath href="#path">textPath</textPath> + </text> + <text x="100" y="180" opacity="0.5"> + <a href="https://www.w3.org"><tspan>link</tspan></a> + </text> + <text x="100" y="240" opacity="0.5"> + <a href="https://www.w3.org"><tspan>another link</tspan></a> + </text> + <text x="100" y="300" opacity="0.25" font-family="Ahem"> + <tspan>XXXX</tspan> + </text> +</svg> |