diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/bugs/1780191-1.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 'layout/reftests/bugs/1780191-1.svg')
-rw-r--r-- | layout/reftests/bugs/1780191-1.svg | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1780191-1.svg b/layout/reftests/bugs/1780191-1.svg new file mode 100644 index 0000000000..6413b72611 --- /dev/null +++ b/layout/reftests/bugs/1780191-1.svg @@ -0,0 +1,33 @@ +<?xml version="1.0" standalone="no"?> +<svg width="315px" height="445px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + <svg viewBox="0 0 21000 29700" id="thetarget"> +<script> +// <![CDATA[ +function insertRect(x,y,w,h) { + const rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + rect.setAttribute("x", x.toString()); + rect.setAttribute("y", y.toString()); + rect.setAttribute("height", h.toString()); + rect.setAttribute("width", w.toString()); + document.getElementById("thetarget").appendChild(rect); +} +function place() { + let baseleft = 2000; + let basetop = 2000; + let width = 18; + let height = 539; + let coldiff = 66; + let rowdiff = 600; + for (let row = 0; row <= 60; row++) { + for (let col = 0; col <= 360; col++) { + insertRect(baseleft + col*coldiff + row, basetop + rowdiff*row, width, height); + } + } +} +place(); +// ]]> +</script> + + + </svg> +</svg> |