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 /layout/reftests/svg/pattern-transformed-02-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 'layout/reftests/svg/pattern-transformed-02-ref.svg')
-rw-r--r-- | layout/reftests/svg/pattern-transformed-02-ref.svg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/svg/pattern-transformed-02-ref.svg b/layout/reftests/svg/pattern-transformed-02-ref.svg new file mode 100644 index 0000000000..b099042810 --- /dev/null +++ b/layout/reftests/svg/pattern-transformed-02-ref.svg @@ -0,0 +1,20 @@ +<svg width="800" height="500" xmlns="http://www.w3.org/2000/svg"> + + <text x="25" y="25">Both patterns should render without blurriness</text> + + <pattern id="pattern1" viewBox="0 0 100 20" width="100" height="20" + patternUnits="userSpaceOnUse"> + <circle r="2" cx="10" cy="10" fill="green"/> + <circle r="4" cx="30" cy="10" fill="green"/> + <circle r="6" cx="50" cy="10" fill="green"/> + <circle r="8" cx="70" cy="10" fill="green"/> + <circle r="10" cx="90" cy="10" fill="green"/> + </pattern> + + <circle r="150" cx="200" cy="200" stroke="gray" fill="none"/> + <circle r="150" cx="200" cy="200" fill="url(#pattern1)"/> + + <circle r="150" cx="600" cy="200" stroke="gray" fill="none"/> + <circle r="150" cx="600" cy="200" fill="url(#pattern1)"/> + +</svg> |