diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec/svg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec/svg.js b/spec/spec/svg.js index 311a69a..318b948 100644 --- a/spec/spec/svg.js +++ b/spec/spec/svg.js @@ -98,7 +98,7 @@ describe('SVG', function() { expect(SVG.parser.draw.node.nodeName).toBe('svg') }) it('hides the parser', function() { - expect(SVG.parser.draw.node.getAttribute('style')).toBe('opacity: 0; position: fixed; left: 100%; top: 100%; overflow: hidden;') + expect(SVG.parser.draw.node.getAttribute('style')).toBe('opacity: 0; position: absolute; left: -100%; top: -100%; overflow: hidden;') }) it('holds polyline and path', function() { expect(SVG.select('polyline', SVG.parser.draw.node).first().type).toBe('polyline') |