Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <body> | |
| 3 <style> | |
| 4 .target { | |
| 5 width: 100px; | |
| 6 height: 100px; | |
| 7 display: inline-block; | |
| 8 } | |
| 9 </style> | |
| 10 <template id="target-template">Text</template> | |
| 11 <script src="resources/interpolation-test.js"></script> | |
| 12 <script> | |
| 13 runAsRefTest(); | |
| 14 testInterpolationAt([-0.3, 0, 0.3, 0.6, 1, 1.5], { | |
| 15 property: 'color', | |
| 16 from: 'red', | |
| 17 to: 'green' | |
| 18 }); | |
| 19 </script> | |
| OLD | NEW |