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

Side by Side Diff: third_party/WebKit/ManualTests/animation/compositor-transform-fill-forwards-with-motion-path.html

Issue 2827003002: CSS Motion Path: delete implementation of motion-path property (Closed)
Patch Set: ManualTests Created 3 years, 7 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 5
6 div { 6 div {
7 position: absolute; 7 position: absolute;
8 height: 90px; 8 height: 90px;
9 width: 90px; 9 width: 90px;
10 background: blue; 10 background: blue;
11 } 11 }
12 12
13 #div1 { 13 #div1 {
14 z-index: 4; 14 z-index: 4;
15 left: 100px; 15 left: 100px;
16 top: 200px; 16 top: 200px;
17 motion-path: path('m 0 0 h 400'); 17 offset-path: path('m 0 0 h 400');
18 } 18 }
19 19
20 #div2 { 20 #div2 {
21 z-index: 3; 21 z-index: 3;
22 left: 100px; 22 left: 100px;
23 top: 300px; 23 top: 300px;
24 } 24 }
25 25
26 </style> 26 </style>
27 </head> 27 </head>
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 }); 76 });
77 }, 3000); 77 }, 3000);
78 } 78 }
79 79
80 requestAnimationFrame(startAnimations); 80 requestAnimationFrame(startAnimations);
81 81
82 </script> 82 </script>
83 83
84 </body> 84 </body>
85 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698