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

Side by Side Diff: LayoutTests/animations/interpolation/shape-outside.html

Issue 112103012: Update default shape property value to 'none' (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Merging with new ellipse code Created 6 years, 11 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <body> 3 <body>
4 <script src="resources/interpolation-test.js"></script> 4 <script src="resources/interpolation-test.js"></script>
5 <script> 5 <script>
6 assertInterpolation({ 6 assertInterpolation({
7 property: 'shape-outside', 7 property: 'shape-outside',
8 from: 'rectangle(0px, 0px, 100px, 100px)', 8 from: 'rectangle(0px, 0px, 100px, 100px)',
9 to: 'rectangle(25px, 25px, 50px, 50px)' 9 to: 'rectangle(25px, 25px, 50px, 50px)'
10 }, [ 10 }, [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 {at: -0.3, is: 'polygon(nonzero, -7.5px -7.5px, 17.5px 17.5px, 42.5px 42.5px)' }, 63 {at: -0.3, is: 'polygon(nonzero, -7.5px -7.5px, 17.5px 17.5px, 42.5px 42.5px)' },
64 {at: 0, is: 'polygon(nonzero, 0px 0px, 25px 25px, 50px 50px)'}, 64 {at: 0, is: 'polygon(nonzero, 0px 0px, 25px 25px, 50px 50px)'},
65 {at: 0.3, is: 'polygon(nonzero, 7.5px 7.5px, 32.5px 32.5px, 57.5px 57.5px)'}, 65 {at: 0.3, is: 'polygon(nonzero, 7.5px 7.5px, 32.5px 32.5px, 57.5px 57.5px)'},
66 {at: 0.6, is: 'polygon(nonzero, 15px 15px, 40px 40px, 65px 65px)'}, 66 {at: 0.6, is: 'polygon(nonzero, 15px 15px, 40px 40px, 65px 65px)'},
67 {at: 1, is: 'polygon(nonzero, 25px 25px, 50px 50px, 75px 75px)'}, 67 {at: 1, is: 'polygon(nonzero, 25px 25px, 50px 50px, 75px 75px)'},
68 {at: 1.5, is: 'polygon(nonzero, 37.5px 37.5px, 62.5px 62.5px, 87.5px 87.5px)'} 68 {at: 1.5, is: 'polygon(nonzero, 37.5px 37.5px, 62.5px 62.5px, 87.5px 87.5px)'}
69 ]); 69 ]);
70 70
71 assertInterpolation({ 71 assertInterpolation({
72 property: 'shape-outside', 72 property: 'shape-outside',
73 from: 'auto', 73 from: 'none',
74 to: 'ellipse(100% 100% at 0% 0%)', 74 to: 'ellipse(100% 100% at 0% 0%)',
75 }, [ 75 }, [
76 {at: -0.3, is: 'auto'}, 76 {at: -0.3, is: 'none'},
77 {at: 0, is: 'auto'}, 77 {at: 0, is: 'none'},
78 {at: 0.3, is: 'auto'}, 78 {at: 0.3, is: 'none'},
79 {at: 0.6, is: 'ellipse(100% 100% at 0% 0%)'}, 79 {at: 0.6, is: 'ellipse(100% 100% at 0% 0%)'},
80 {at: 1, is: 'ellipse(100% 100% at 0% 0%)'}, 80 {at: 1, is: 'ellipse(100% 100% at 0% 0%)'},
81 {at: 1.5, is: 'ellipse(100% 100% at 0% 0%)'} 81 {at: 1.5, is: 'ellipse(100% 100% at 0% 0%)'}
82 ]); 82 ]);
83 </script> 83 </script>
84 </body> 84 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698