forked from web-animations/web-animations-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor-handler.js
33 lines (33 loc) · 2.11 KB
/
color-handler.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
suite('color-handler', function() {
test('parse colors', function() {
assert.deepEqual(parseColor(' ReD '), [255, 0, 0, 1]);
assert.deepEqual(parseColor(' magenta'), [255, 0, 255, 1]);
assert.deepEqual(parseColor('transparent'), [0, 0, 0, 0]);
assert.deepEqual(parseColor('#0f0'), [0, 255, 0, 1]);
assert.deepEqual(parseColor('rgb(0,10,20)'), [0, 10, 20, 1]);
assert.deepEqual(parseColor('rgba(65,40,20,0.2)'), [13, 8, 4, 0.2]);
assert.deepEqual(parseColor('hsl(120, 100%, 50%)'), [0, 255, 0, 1]);
});
test('invalid colors fail to parse', function() {
assert.isUndefined(parseColor(''));
assert.isUndefined(parseColor('bananayellow'));
assert.isUndefined(parseColor('rgb(10, 20, 30, 40, 50)'));
});
test('color interpolation', function() {
assert.equal(webAnimations1.propertyInterpolation('color', '#00aa11', '#aa00bb')(0.2), 'rgba(34,136,51,1)');
assert.equal(webAnimations1.propertyInterpolation('color', 'transparent', '#004488')(0), 'transparent');
assert.equal(webAnimations1.propertyInterpolation('color', 'transparent', '#004488')(0.5), 'rgba(0,68,136,0.5)');
assert.equal(webAnimations1.propertyInterpolation('color', 'red', 'green')(2), 'rgba(0,255,0,1)');
assert.equal(webAnimations1.propertyInterpolation('color', 'red', 'green')(-1), 'rgba(255,0,0,1)');
});
test('svg color interpolation', function() {
assert.equal(webAnimations1.propertyInterpolation('fill', '#00fe00', '#180036')(0.5), 'rgba(12,127,27,1)');
assert.equal(webAnimations1.propertyInterpolation('floodColor', '#00fe00', '#180036')(0.5), 'rgba(12,127,27,1)');
assert.equal(webAnimations1.propertyInterpolation('lightingColor', '#00fe00', '#180036')(0.5), 'rgba(12,127,27,1)');
assert.equal(webAnimations1.propertyInterpolation('stopColor', '#00fe00', '#180036')(0.5), 'rgba(12,127,27,1)');
assert.equal(webAnimations1.propertyInterpolation('stroke', '#00fe00', '#180036')(0.5), 'rgba(12,127,27,1)');
});
test('interpolation to/from initial', function() {
assert.equal(webAnimations1.propertyInterpolation('backgroundColor', 'initial', 'red')(0.5), 'rgba(255,0,0,0.5)');
});
});