OLD | NEW |
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 Loading... |
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> |
OLD | NEW |