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

Side by Side Diff: LayoutTests/animations/interpolation/webkit-column-width-interpolation.html

Issue 1169003002: Fix animation of auto for -webkit-column-count and -webkit-column-width (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 <style> 3 <style>
4 .target { 4 .target {
5 -webkit-column-width: 20px; 5 -webkit-column-width: 20px;
6 column-width: 20px; 6 column-width: 20px;
7 width: 600px; 7 width: 600px;
8 -webkit-column-gap: 20px; 8 -webkit-column-gap: 20px;
9 column-gap: 20px; 9 column-gap: 20px;
10 } 10 }
(...skipping 20 matching lines...) Expand all
31 from: '1px', 31 from: '1px',
32 to: '101px' 32 to: '101px'
33 }, [ 33 }, [
34 {at: -0.3, is: '0.000000119px'}, 34 {at: -0.3, is: '0.000000119px'},
35 {at: 0, is: '1px'}, 35 {at: 0, is: '1px'},
36 {at: 0.3, is: '31px'}, 36 {at: 0.3, is: '31px'},
37 {at: 0.6, is: '61px'}, 37 {at: 0.6, is: '61px'},
38 {at: 1, is: '101px'}, 38 {at: 1, is: '101px'},
39 {at: 1.5, is: '151px'} 39 {at: 1.5, is: '151px'}
40 ]); 40 ]);
41 assertInterpolation({ 41
42 assertNoInterpolation({
42 property: '-webkit-column-width', 43 property: '-webkit-column-width',
43 from: '0px', 44 from: 'auto',
44 to: '100px' 45 to: '100px'
45 }, [ 46 });
46 {at: 0, is: '20px'}
47 ]);
48 </script> 47 </script>
49 </body> 48 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698