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

Side by Side Diff: polymer_0.4.0/bower_components/web-animations-js/test/testcases/auto-test-keyframe-easing.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 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
OLDNEW
1 <style> 1 <style>
2 #container { 2 #container {
3 position: relative; 3 position: relative;
4 } 4 }
5 5
6 #control { 6 #control {
7 position: absolute; 7 position: absolute;
8 background-color: black; 8 background-color: black;
9 width: 20px; 9 width: 20px;
10 height: 0px; 10 height: 0px;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 container.appendChild(textBlock); 55 container.appendChild(textBlock);
56 var keyframe = {height: i * keyframeHeight + 'px'}; 56 var keyframe = {height: i * keyframeHeight + 'px'};
57 if (easing.length) { 57 if (easing.length) {
58 keyframe.easing = easing; 58 keyframe.easing = easing;
59 } 59 }
60 keyframes.push(keyframe); 60 keyframes.push(keyframe);
61 }); 61 });
62 keyframes.push({height: easings.length * keyframeHeight + 'px'}); 62 keyframes.push({height: easings.length * keyframeHeight + 'px'});
63 target.animate(keyframes, timing); 63 target.animate(keyframes, timing);
64 </script> 64 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698