Update object.js

I'm not sure, i'm sorry i tried to guess.
This commit is contained in:
asturur 2014-06-24 14:12:39 +02:00
parent 79d035d27e
commit 62d281bd3d

View file

@ -1075,6 +1075,11 @@ test('toDataURL & reference to canvas', function() {
equal(object.shadow.blur, 10);
equal(object.shadow.offsetX, 5);
equal(object.shadow.offsetY, 15);
equal(object.setShadow(null),object,'should be chainable');
ok(!(object.shadow instanceof fabric.Shadow));
equal(object.shadow, null);
});
test('set shadow', function() {