mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Fixed a leaky global in the SvgExport test
This commit is contained in:
parent
8ca26f650a
commit
14f0f8cbc7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue