summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/marker-orientation-01-ref.svg
blob: 00cc9a3a4abfa3ce3662bbba150b3a33acadd490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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>