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

Side by Side Diff: LayoutTests/animations/interpolation/svg-kerning-interpolation.html

Issue 234453002: Remove SVG1.1 kerning property (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More TestExpectations updates Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="UTF-8">
3 <style>
4 .target {
5 stroke: black;
6 }
7 .replica {
8 stroke: green;
9 }
10 </style>
11 <body>
12 <template id="target-template">
13 <svg width="100" height="50">
14 <text x="0" y="25" font-size="20">TTT</text>
15 </svg>
16 </template>
17 <script src="resources/interpolation-test.js"></script>
18 <script>
19 assertInterpolation({
20 property: 'kerning',
21 from: '-10px',
22 to: '10px'
23 }, [
24 {at: -0.25, is: '-15px'},
25 {at: 0, is: '-10px'},
26 {at: 0.25, is: '-5px'},
27 {at: 0.5, is: '0px'},
28 {at: 0.75, is: '5px'},
29 {at: 1, is: '10px'},
30 {at: 1.25, is: '15px'},
31 ]);
32 </script>
33 </body>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/animations/interpolation/svg-kerning-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698