blob: d9a1c830b16a368daab0d9a96c1d48bc749fe5e2 [file] [log] [blame]
<!DOCTYPE html>
<body>
<style>
.target {
width: 100px;
height: 100px;
background-color: black;
display: inline-block;
}
</style>
<script src="resources/interpolation-test.js"></script>
<script>
assertInterpolation({
property: 'opacity',
from: '0',
to: '1'
}, [
{at: -0.3, is: '0'},
{at: 0, is: '0'},
{at: 0.3, is: '0.3'},
{at: 0.6, is: '0.6'},
{at: 1, is: '1'},
{at: 1.5, is: '1'}
]);
</script>