diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/svg/use-02.svg | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/svg/use-02.svg | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/svg/use-02.svg b/layout/reftests/svg/use-02.svg new file mode 100644 index 0000000000..5ebaed85dc --- /dev/null +++ b/layout/reftests/svg/use-02.svg @@ -0,0 +1,17 @@ +<svg xmlns="http://www.w3.org/2000/svg"> + <title>Testing that 'use' with zero width/height is displayed when + not referencing svg or symbol elements</title> + <defs> + <rect id="to-cover" x="2" y="2" height="96" width="96" fill="red"/> + <rect id="r" x="0" y="0" height="100" width="100" fill="lime"/> + </defs> + <rect width="100%" height="100%" fill="lime"/> + + <use href="#to-cover"/> + <use x="110" href="#to-cover"/> + <use y="110" href="#to-cover"/> + + <use href="#r" width="0" height="0" /> + <use x="110" href="#r" width="0" /> + <use y="110" href="#r" height="0" /> +</svg> |