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

Side by Side Diff: polymer_0.5.4/bower_components/web-animations-js/test/blink/interpolation/viewport-unit-interpolation.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 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 <style> 2 <style>
3 3
4 .target { 4 .target {
5 font-size: 16px; 5 font-size: 16px;
6 width: 60px; 6 width: 60px;
7 height: 60px; 7 height: 60px;
8 display: inline-block; 8 display: inline-block;
9 border: 2px solid black; 9 border: 2px solid black;
10 margin-right: 2px; 10 margin-right: 2px;
(...skipping 25 matching lines...) Expand all
36 }, [ 36 }, [
37 {at: -0.3, is: calc(-0.3)}, 37 {at: -0.3, is: calc(-0.3)},
38 {at: 0, is: calc(0)}, 38 {at: 0, is: calc(0)},
39 {at: 0.3, is: calc(0.3)}, 39 {at: 0.3, is: calc(0.3)},
40 {at: 0.6, is: calc(0.6)}, 40 {at: 0.6, is: calc(0.6)},
41 {at: 1, is: calc(1)}, 41 {at: 1, is: calc(1)},
42 {at: 1.5, is: calc(1.5)} 42 {at: 1.5, is: calc(1.5)}
43 ]); 43 ]);
44 </script> 44 </script>
45 </body> 45 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698