Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / inline-style-overrides-markers.svg
blob968082c9b5cf2b0ec88c8b0e41e7e6b0dc5dbe04
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <style type="text/css"><![CDATA[
3 line {
4 stroke: green;
5 stroke-width: 50px;
6 marker-start: url(#marker);
7 marker-mid: url(#marker);
8 marker-end: url(#marker);
10 ]]>
11 </style>
12 <defs>
13 <marker id="marker" viewBox="0 0 10 10" refX="1" refY="5"
14 markerUnits="strokeWidth" orient="auto"
15 markerWidth="2" markerHeight="2">
16 <polyline points="0,0 10,0 10,10 0,10 0,0" fill="red" />
17 </marker>
18 </defs>
20 <line x1="0" y1="0" x2="100" y2="100" style="marker-start: none;marker-mid: none;marker-end: none;" />
21 </svg>