There was an error while loading. Please reload this page.
1 parent 72a1ba8 commit a7ec0efCopy full SHA for a7ec0ef
1 file changed
test/tests/PlacedSymbol.js
@@ -3,6 +3,12 @@ module('Placed Symbol');
3
test('placedSymbol bounds', function() {
4
var doc = new Document();
5
var path = new Path.Circle([50, 50], 50);
6
+ path.strokeWidth = 1;
7
+ path.strokeCap = 'round';
8
+ path.strokeJoin = 'round';
9
+ compareRectangles(path.strokeBounds,
10
+ new Rectangle(-0.5, -0.5, 101, 101),
11
+ 'Path initial bounds.');
12
var symbol = new Symbol(path);
13
var placedSymbol = new PlacedSymbol(symbol);
14
0 commit comments