Fixed a leaky global in the SvgExport test

This commit is contained in:
Ben Firshman 2012-11-21 00:30:18 +00:00
parent 8ca26f650a
commit 14f0f8cbc7

View file

@ -357,7 +357,7 @@ test('compare ellipse values', function() {
var shape = document.createElementNS(svgns, 'ellipse');
var cx = 100,
cy = 80,
rx = 50;
rx = 50,
ry = 30;
shape.setAttribute('cx', cx);
shape.setAttribute('cy', cy);