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/marker-orientation-01-ref.svg | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.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/svg/marker-orientation-01-ref.svg')
-rw-r--r-- | layout/reftests/svg/marker-orientation-01-ref.svg | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/layout/reftests/svg/marker-orientation-01-ref.svg b/layout/reftests/svg/marker-orientation-01-ref.svg new file mode 100644 index 0000000000..00cc9a3a4a --- /dev/null +++ b/layout/reftests/svg/marker-orientation-01-ref.svg @@ -0,0 +1,68 @@ +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<svg xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink"> + <title>Reference for test that marker orientation is correct at the end of arcs</title> + <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=769115 --> + + <defs> + <g id="m1" transform="translate(-20,-20)" fill="blue"> + <rect x="5" y="15" width="22" height="10"/> + <path d="M 25,10 35,20 25,30 z"/> + </g> + + <g id="m2" transform="translate(-20,-20)" fill="red"> + <rect x="5" y="15" width="22" height="10"/> + <path d="M 25,10 35,20 25,30 z"/> + </g> + </defs> + + <g fill="none"> + <!-- arcs that go from the left of the circle to... --> + <g> + <!-- ...90 degrees anti-clockwise --> + <use xlink:href="#m1" transform="translate(100,100)rotate(90)"/> + <use xlink:href="#m2" transform="rotate(-90,150,100)translate(100,100)rotate(90)"/> + <!-- ...180 degrees anti-clockwise --> + <use xlink:href="#m2" transform="rotate(-180,150,100)translate(100,100)rotate(90)"/> + <!-- ...270 degrees anti-clockwise --> + <use xlink:href="#m2" transform="rotate(-270,150,100)translate(100,100)rotate(90)"/> + </g> + + <!-- arcs that go from the left of the circle to... --> + <g transform="translate(250,0)"> + <!-- ...90 degrees anti-clockwise --> + <use xlink:href="#m1" transform="translate(100,100)rotate(-90)"/> + <use xlink:href="#m2" transform="rotate(90,150,100)translate(100,100)rotate(-90)"/> + <!-- ...180 degrees anti-clockwise --> + <use xlink:href="#m2" transform="rotate(180,150,100)translate(100,100)rotate(-90)"/> + <!-- ...270 degrees anti-clockwise --> + <use xlink:href="#m2" transform="rotate(270,150,100)translate(100,100)rotate(-90)"/> + </g> + + <!-- arcs that go from the right of the circle to... --> + <g transform="translate(0,250)"> + <!-- ...90 degrees anti-clockwise --> + <use xlink:href="#m1" transform="translate(200,100)rotate(90)"/> + <use xlink:href="#m2" transform="rotate(90,150,100)translate(200,100)rotate(90)"/> + <!-- ...180 degrees anti-clockwise --> + <use xlink:href="#m2" transform="rotate(180,150,100)translate(200,100)rotate(90)"/> + <!-- ...270 degrees anti-clockwise --> + <use xlink:href="#m2" transform="rotate(270,150,100)translate(200,100)rotate(90)"/> + </g> + + <!-- arcs that go from the right of the circle to... --> + <g transform="translate(250,250)"> + <!-- ...90 degrees clockwise --> + <use xlink:href="#m1" transform="translate(200,100)rotate(-90)"/> + <use xlink:href="#m2" transform="rotate(-90,150,100)translate(200,100)rotate(-90)"/> + <!-- ...180 degrees clockwise --> + <use xlink:href="#m2" transform="rotate(-180,150,100)translate(200,100)rotate(-90)"/> + <!-- ...270 degrees clockwise --> + <use xlink:href="#m2" transform="rotate(-270,150,100)translate(200,100)rotate(-90)"/> + </g> + </g> + +</svg> |