mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fix unit tests for CSS values after white-space removal.
This commit is contained in:
parent
b532390d9c
commit
2770a80a00
1 changed files with 6 additions and 6 deletions
|
@ -16,38 +16,38 @@ test('Set named color', function() {
|
|||
var path = new Path();
|
||||
path.fillColor = 'red';
|
||||
compareColors(path.fillColor, new Color(1, 0, 0));
|
||||
equals(path.fillColor.toCSS(), 'rgb(255, 0, 0)');
|
||||
equals(path.fillColor.toCSS(), 'rgb(255,0,0)');
|
||||
});
|
||||
|
||||
test('Set color to hex', function() {
|
||||
var path = new Path();
|
||||
path.fillColor = '#ff0000';
|
||||
compareColors(path.fillColor, new Color(1, 0, 0));
|
||||
equals(path.fillColor.toCSS(), 'rgb(255, 0, 0)');
|
||||
equals(path.fillColor.toCSS(), 'rgb(255,0,0)');
|
||||
|
||||
var path = new Path();
|
||||
path.fillColor = '#f00';
|
||||
compareColors(path.fillColor, new Color(1, 0, 0));
|
||||
equals(path.fillColor.toCSS(), 'rgb(255, 0, 0)');
|
||||
equals(path.fillColor.toCSS(), 'rgb(255,0,0)');
|
||||
});
|
||||
|
||||
test('Set color to object', function() {
|
||||
var path = new Path();
|
||||
path.fillColor = { red: 1, green: 0, blue: 1};
|
||||
compareColors(path.fillColor, new Color(1, 0, 1));
|
||||
equals(path.fillColor.toCSS(), 'rgb(255, 0, 255)');
|
||||
equals(path.fillColor.toCSS(), 'rgb(255,0,255)');
|
||||
|
||||
var path = new Path();
|
||||
path.fillColor = { gray: 0.2 };
|
||||
compareColors(path.fillColor, new Color(0.2));
|
||||
equals(path.fillColor.toCSS(), 'rgb(51, 51, 51)');
|
||||
equals(path.fillColor.toCSS(), 'rgb(51,51,51)');
|
||||
});
|
||||
|
||||
test('Set color to array', function() {
|
||||
var path = new Path();
|
||||
path.fillColor = [1, 0, 0];
|
||||
compareColors(path.fillColor, new Color(1, 0, 0));
|
||||
equals(path.fillColor.toCSS(), 'rgb(255, 0, 0)');
|
||||
equals(path.fillColor.toCSS(), 'rgb(255,0,0)');
|
||||
});
|
||||
|
||||
test('Creating Colors', function() {
|
||||
|
|
Loading…
Reference in a new issue