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

Side by Side Diff: LayoutTests/animations/interpolation/shape-inside.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
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/shape-inside-expected.txt » ('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 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <style> 3 <style>
4 .target { 4 .target {
5 color: white; 5 color: white;
6 width: 100px; 6 width: 100px;
7 height: 100px; 7 height: 100px;
8 background-color: black; 8 background-color: black;
9 display: inline-block; 9 display: inline-block;
10 overflow: hidden; 10 overflow: hidden;
(...skipping 26 matching lines...) Expand all
37 {at: -0.3, is: 'rectangle(-7.5px, -7.5px, 115px, 115px)'}, 37 {at: -0.3, is: 'rectangle(-7.5px, -7.5px, 115px, 115px)'},
38 {at: 0, is: 'rectangle(0px, 0px, 100px, 100px)'}, 38 {at: 0, is: 'rectangle(0px, 0px, 100px, 100px)'},
39 {at: 0.3, is: 'rectangle(7.5px, 7.5px, 85px, 85px)'}, 39 {at: 0.3, is: 'rectangle(7.5px, 7.5px, 85px, 85px)'},
40 {at: 0.6, is: 'rectangle(15px, 15px, 70px, 70px)'}, 40 {at: 0.6, is: 'rectangle(15px, 15px, 70px, 70px)'},
41 {at: 1, is: 'rectangle(25px, 25px, 50px, 50px)'}, 41 {at: 1, is: 'rectangle(25px, 25px, 50px, 50px)'},
42 {at: 1.5, is: 'rectangle(37.5px, 37.5px, 25px, 25px)'} 42 {at: 1.5, is: 'rectangle(37.5px, 37.5px, 25px, 25px)'}
43 ]); 43 ]);
44 44
45 assertInterpolation({ 45 assertInterpolation({
46 property: 'shape-inside', 46 property: 'shape-inside',
47 from: 'auto', 47 from: 'none',
48 to: 'ellipse(0%, 0%, 100%, 100%)', 48 to: 'ellipse(0%, 0%, 100%, 100%)',
49 }, [ 49 }, [
50 {at: -0.3, is: 'auto'}, 50 {at: -0.3, is: 'none'},
51 {at: 0, is: 'auto'}, 51 {at: 0, is: 'none'},
52 {at: 0.3, is: 'auto'}, 52 {at: 0.3, is: 'none'},
53 {at: 0.6, is: 'ellipse(0%, 0%, 100%, 100%)'}, 53 {at: 0.6, is: 'ellipse(0%, 0%, 100%, 100%)'},
54 {at: 1, is: 'ellipse(0%, 0%, 100%, 100%)'}, 54 {at: 1, is: 'ellipse(0%, 0%, 100%, 100%)'},
55 {at: 1.5, is: 'ellipse(0%, 0%, 100%, 100%)'} 55 {at: 1.5, is: 'ellipse(0%, 0%, 100%, 100%)'}
56 ]); 56 ]);
57 </script> 57 </script>
58 </body> 58 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/shape-inside-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698