Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / css / svg-angle-turn.svg
blob61466ddcba5aafdaa93e1be908a1e0588149df0e
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800" height="600">
2 <defs>
3 <marker id="turn0.2" refY="5" viewBox="0 0 10 10" orient="0.2turn">
4 <path d="M0 0l10 5 -10 5z"/>
5 </marker>
6 <marker id="turn0.5" refY="5" viewBox="0 0 10 10" orient="0.5turn">
7 <path d="M0 0l10 5 -10 5z"/>
8 </marker>
9 <marker id="turn1" refY="5" viewBox="0 0 10 10" orient="1turn">
10 <path d="M0 0l10 5 -10 5z"/>
11 </marker>
12 <marker id="turn1.7" refY="5" viewBox="0 0 10 10" orient="1.7turn">
13 <path d="M0 0l10 5 -10 5z"/>
14 </marker>
15 <style>
16 .test {
17 stroke: black;
18 stroke-width: 10px;
21 #t1 { marker-end: url(#turn0.2); }
22 #t2 { marker-end: url(#turn0.5); }
23 #t3 { marker-end: url(#turn1); }
24 #t4 { marker-end: url(#turn1.7); }
25 </style>
26 </defs>
28 <path id="t1" class="test" d="M10 40h200" />
29 <path id="t2" class="test" d="M10 80h200" />
30 <path id="t3" class="test" d="M10 120h200" />
31 <path id="t4" class="test" d="M10 160h200" />
32 </svg>