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

Side by Side Diff: polymer_0.5.4/bower_components/web-animations-js/test/blink/interpolation/shape-outside.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 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <body> 3 <body>
4 <script src="../testharness/testharness.js"></script> 4 <script src="../testharness/testharness.js"></script>
5 <script src="../testharness/testharnessreport.js"></script> 5 <script src="../testharness/testharnessreport.js"></script>
6 <script src="resources/interpolation-test.js"></script> 6 <script src="resources/interpolation-test.js"></script>
7 <script> 7 <script>
8 /* TODO: add inset test once blend() works for it */ 8 /* TODO: add inset test once blend() works for it */
9 9
10 assertInterpolation({ 10 assertInterpolation({
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 property: 'shape-outside', 77 property: 'shape-outside',
78 from: 'circle(20% at right 10% bottom 20px)', 78 from: 'circle(20% at right 10% bottom 20px)',
79 to: 'circle(30% at right 20% bottom 30px)', 79 to: 'circle(30% at right 20% bottom 30px)',
80 }, [ 80 }, [
81 {at: 0, is: 'circle(20% at right 10% bottom 20px)'}, 81 {at: 0, is: 'circle(20% at right 10% bottom 20px)'},
82 {at: 0.5, is: 'circle(25% at 85% calc(-25px + 100%))'}, 82 {at: 0.5, is: 'circle(25% at 85% calc(-25px + 100%))'},
83 {at: 1, is: 'circle(30% at right 20% bottom 30px)'}, 83 {at: 1, is: 'circle(30% at right 20% bottom 30px)'},
84 ]); 84 ]);
85 </script> 85 </script>
86 </body> 86 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698