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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-orient-composition.html

Issue 1459093002: Make neutral keyframes explicit in SVG attribute interpolation test API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review changes Created 5 years, 1 month 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <template id="target-template"> 4 <template id="target-template">
5 <svg width="90" height="90"> 5 <svg width="90" height="90">
6 <defs> 6 <defs>
7 <marker class="target" /> 7 <marker class="target" />
8 </defs> 8 </defs>
9 </svg> 9 </svg>
10 </template> 10 </template>
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 {at: -0.4, is: 88}, 52 {at: -0.4, is: 88},
53 {at: 0, is: 120}, 53 {at: 0, is: 120},
54 {at: 0.2, is: 136}, 54 {at: 0.2, is: 136},
55 {at: 0.6, is: 168}, 55 {at: 0.6, is: 168},
56 {at: 1, is: 200}, 56 {at: 1, is: 200},
57 {at: 1.4, is: 232} 57 {at: 1.4, is: 232}
58 ]); 58 ]);
59 assertAttributeInterpolation({ 59 assertAttributeInterpolation({
60 property: 'orient', 60 property: 'orient',
61 underlying: '20', 61 underlying: '20',
62 from: neutralKeyframe,
62 to: '180', 63 to: '180',
63 toComposite: 'replace' 64 toComposite: 'replace'
64 }, [ 65 }, [
65 {at: -0.4, is: -44}, 66 {at: -0.4, is: -44},
66 {at: 0, is: 20}, 67 {at: 0, is: 20},
67 {at: 0.2, is: 52}, 68 {at: 0.2, is: 52},
68 {at: 0.6, is: 116}, 69 {at: 0.6, is: 116},
69 {at: 1, is: 180}, 70 {at: 1, is: 180},
70 {at: 1.4, is: 244} 71 {at: 1.4, is: 244}
71 ]); 72 ]);
72 </script> 73 </script>
73 </body> 74 </body>
74 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698