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

Side by Side Diff: LayoutTests/svg/css/svg-angle-turn.svg

Issue 303263008: [SVG2] Add support for the 'turn' unit in <angle>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixups for MathExtras Created 6 years, 6 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
« no previous file with comments | « LayoutTests/fast/svg/svgangle.html ('k') | LayoutTests/svg/css/svg-angle-turn-expected.svg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" width="800" height="600">
2 <defs>
3 <marker id="turn0.2" refY="5" viewBox="0 0 10 10" orient="0.2tur n">
4 <path d="M0 0l10 5 -10 5z"/>
5 </marker>
6 <marker id="turn0.5" refY="5" viewBox="0 0 10 10" orient="0.5tur n">
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.7tur n">
13 <path d="M0 0l10 5 -10 5z"/>
14 </marker>
15 <style>
16 .test {
17 stroke: black;
18 stroke-width: 10px;
19 }
20
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>
27
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>
OLDNEW
« no previous file with comments | « LayoutTests/fast/svg/svgangle.html ('k') | LayoutTests/svg/css/svg-angle-turn-expected.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698