fix(animations): make sure the easing value is passed into the web-animations player

Closes #9517
Closes #9523
This commit is contained in:
Matias Niemelä 2016-06-22 23:57:49 -07:00
parent ae75e3640a
commit c43aec2182
2 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,7 @@ export class WebAnimationsDriver implements AnimationDriver {
var playerOptions = {
'duration': duration,
'delay': delay,
'easing': easing,
'fill': 'both' // we use `both` because it allows for styling at 0% to work with `delay`
};

View File

@ -92,5 +92,15 @@ export function main() {
var options = details['options'];
expect(options['fill']).toEqual('both');
});
it('should apply the provided easing', () => {
var startingStyles = _makeStyles({});
var styles = [_makeKeyframe(0, {'color': 'green'}), _makeKeyframe(1, {'color': 'red'})];
driver.animate(elm, startingStyles, styles, 1000, 1000, 'ease-out');
var details = driver.log.pop();
var options = details['options'];
expect(options['easing']).toEqual('ease-out');
});
});
}