We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8f6e1 commit e379573Copy full SHA for e379573
test/js/color-handler.js
@@ -11,7 +11,7 @@ suite('color-handler', function() {
11
test('invalid colors fail to parse', function() {
12
assert.isUndefined(parseColor(''));
13
assert.isUndefined(parseColor('bananayellow'));
14
- assert.isUndefined(parseColor('rgb(10, 20, 30, 40)'));
+ assert.isUndefined(parseColor('rgb(10, 20, 30, 40, 50)'));
15
});
16
test('color interpolation', function() {
17
assert.equal(webAnimations1.propertyInterpolation('color', '#00aa11', '#aa00bb')(0.2), 'rgba(34,136,51,1)');
0 commit comments