Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(437)

Side by Side Diff: LayoutTests/svg/markers/marker-orientation-02.svg

Issue 539833004: [SVG2] Add support for marker orient="auto-start-reverse". (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add dump-render-tree output + fix nit and test Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <svg xmlns="http://www.w3.org/2000/svg">
6 <title>Test that marker orientation is correct at the end of arcs when
7 orient="auto-start-reverse" is used</title>
8 <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=769115 -->
9
10 <marker id="m1" markerWidth="40" markerHeight="40" refX="20" refY="20"
11 markerUnits="userSpaceOnUse" orient="auto-start-reverse" fill="blue">
12 <rect x="5" y="15" width="22" height="10"/>
13 <rect x="25" y="10" height="20" width="10"/>
14 <rect x="35" y="18" height="4" width="5"/>
15 </marker>
16
17 <marker id="m2" markerWidth="40" markerHeight="40" refX="20" refY="20"
18 markerUnits="userSpaceOnUse" orient="auto-start-reverse" fill="red">
19 <rect x="5" y="15" width="22" height="10"/>
20 <rect x="25" y="10" height="20" width="10"/>
21 <rect x="35" y="18" height="4" width="5"/>
22 </marker>
23
24 <g fill="none">
25 <!-- arcs that go from the left of the circle to... -->
26 <g marker-end="url(#m2)">
27 <!-- ...90 degrees anti-clockwise -->
28 <path d="M100,100 A 50,50 0 1 0 150,50" marker-start="url(#m1)"/>
29 <!-- ...180 degrees anti-clockwise -->
30 <path d="M100,100 A 50,50 0 0 0 200,100"/>
31 <!-- ...270 degrees anti-clockwise -->
32 <path d="M100,100 A 50,50 0 0 0 150,150"/>
33 </g>
34
35 <!-- arcs that go from the left of the circle to... -->
36 <g marker-end="url(#m2)" transform="translate(250,0)">
37 <!-- ...90 degrees clockwise -->
38 <path d="M100,100 A 50,50 0 0 1 150,50" marker-start="url(#m1)"/>
39 <!-- ...180 degrees clockwise -->
40 <path d="M100,100 A 50,50 0 1 1 200,100"/>
41 <!-- ...270 degrees clockwise -->
42 <path d="M100,100 A 50,50 0 1 1 150,150"/>
43 </g>
44
45 <!-- arcs that go from the right of the circle to... -->
46 <g marker-end="url(#m2)" transform="translate(0,250)">
47 <!-- ...90 degrees anti-clockwise -->
48 <path d="M200,100 A 50,50 0 0 1 150,150" marker-start="url(#m1)"/>
49 <!-- ...180 degrees anti-clockwise -->
50 <path d="M200,100 A 50,50 0 0 1 100,100"/>
51 <!-- ...270 degrees anti-clockwise -->
52 <path d="M200,100 A 50,50 0 1 1 150,50"/>
53 </g>
54
55 <!-- arcs that go from the right of the circle to... -->
56 <g marker-end="url(#m2)" transform="translate(250,250)">
57 <!-- ...90 degrees anti-clockwise -->
58 <path d="M200,100 A 50,50 0 0 0 150,50" marker-start="url(#m1)"/>
59 <!-- ...180 degrees anti-clockwise -->
60 <path d="M200,100 A 50,50 0 1 0 100,100"/>
61 <!-- ...270 degrees anti-clockwise -->
62 <path d="M200,100 A 50,50 0 1 0 150,150"/>
63 </g>
64 </g>
65
66 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698