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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-amplitude-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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-azimuth-composition.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="0" height="0"> 5 <svg width="0" height="0">
6 <feComponentTransfer> 6 <feComponentTransfer>
7 <feFuncR type="gamma" class="target" /> 7 <feFuncR type="gamma" class="target" />
8 </feComponentTransfer> 8 </feComponentTransfer>
9 </svg> 9 </svg>
10 </template> 10 </template>
(...skipping 28 matching lines...) Expand all
39 {at: 0, is: 1}, 39 {at: 0, is: 1},
40 {at: 0.2, is: 3}, 40 {at: 0.2, is: 3},
41 {at: 0.6, is: 7}, 41 {at: 0.6, is: 7},
42 {at: 1, is: 11}, 42 {at: 1, is: 11},
43 {at: 1.4, is: 15}, 43 {at: 1.4, is: 15},
44 ]); 44 ]);
45 45
46 assertAttributeInterpolation({ 46 assertAttributeInterpolation({
47 property: 'amplitude', 47 property: 'amplitude',
48 underlying: '5', 48 underlying: '5',
49 from: neutralKeyframe,
49 to: '10', 50 to: '10',
50 toComposite: 'replace', 51 toComposite: 'replace',
51 }, [ 52 }, [
52 {at: -0.4, is: 3}, 53 {at: -0.4, is: 3},
53 {at: 0, is: 5}, 54 {at: 0, is: 5},
54 {at: 0.2, is: 6}, 55 {at: 0.2, is: 6},
55 {at: 0.6, is: 8}, 56 {at: 0.6, is: 8},
56 {at: 1, is: 10}, 57 {at: 1, is: 10},
57 {at: 1.4, is: 12}, 58 {at: 1.4, is: 12},
58 ]); 59 ]);
59 </script> 60 </script>
60 </body> 61 </body>
61 </html> 62 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-azimuth-composition.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698