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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-composition/svg-z-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="0" height="0"> 5 <svg width="0" height="0">
6 <defs> 6 <defs>
7 <filter> 7 <filter>
8 <fePointLight class="target" /> 8 <fePointLight class="target" />
9 </filter> 9 </filter>
10 </defs> 10 </defs>
(...skipping 30 matching lines...) Expand all
41 {at: 0, is: 1}, 41 {at: 0, is: 1},
42 {at: 0.2, is: 3}, 42 {at: 0.2, is: 3},
43 {at: 0.6, is: 7}, 43 {at: 0.6, is: 7},
44 {at: 1, is: 11}, 44 {at: 1, is: 11},
45 {at: 1.4, is: 15}, 45 {at: 1.4, is: 15},
46 ]); 46 ]);
47 47
48 assertAttributeInterpolation({ 48 assertAttributeInterpolation({
49 property: 'z', 49 property: 'z',
50 underlying: '5', 50 underlying: '5',
51 from: neutralKeyframe,
51 to: '10', 52 to: '10',
52 toComposite: 'replace', 53 toComposite: 'replace',
53 }, [ 54 }, [
54 {at: -0.4, is: 3}, 55 {at: -0.4, is: 3},
55 {at: 0, is: 5}, 56 {at: 0, is: 5},
56 {at: 0.2, is: 6}, 57 {at: 0.2, is: 6},
57 {at: 0.6, is: 8}, 58 {at: 0.6, is: 8},
58 {at: 1, is: 10}, 59 {at: 1, is: 10},
59 {at: 1.4, is: 12}, 60 {at: 1.4, is: 12},
60 ]); 61 ]);
61 </script> 62 </script>
62 </body> 63 </body>
63 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698