blob: 0711cd19449204738758e56a8ac26f42d734c262 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="UTF-8">
<style>
.parent {
min-width: 30px;
}
.target {
width: 0px;
height: 10px;
background-color: black;
min-width: 10px;
}
.expected {
background-color: green;
}
</style>
<body>
<script src="resources/interpolation-test.js"></script>
<script>
assertInterpolation({
property: 'min-width',
from: neutralKeyframe,
to: '20px',
}, [
{at: -0.5, is: '5px'},
{at: 0, is: '10px'},
{at: 0.3, is: '13px'},
{at: 0.6, is: '16px'},
{at: 1, is: '20px'},
{at: 1.5, is: '25px'},
]);
assertNoInterpolation({
property: 'min-width',
from: 'initial',
to: '20px',
});
assertInterpolation({
property: 'min-width',
from: 'inherit',
to: '20px',
}, [
{at: -0.5, is: '35px'},
{at: 0, is: '30px'},
{at: 0.3, is: '27px'},
{at: 0.6, is: '24px'},
{at: 1, is: '20px'},
{at: 1.5, is: '15px'},
]);
assertNoInterpolation({
property: 'min-width',
from: 'unset',
to: '20px',
});
assertInterpolation({
property: 'min-width',
from: '0px',
to: '100px'
}, [
{at: -0.5, is: '0'}, // CSS min-width can't be negative.
{at: 0, is: '0'},
{at: 0.3, is: '30px'},
{at: 0.6, is: '60px'},
{at: 1, is: '100px'},
{at: 1.5, is: '150px'}
]);
</script>
</body>