@Test
public void testEnableRendering() throws MalformedSVGDocument {
node.setAttribute(SVGAttributes.SVG_RX, "0"); //$NON-NLS-1$
node.setAttribute(SVGAttributes.SVG_RY, "0"); //$NON-NLS-1$
SVGEllipseElement e = new SVGEllipseElement(node, null);
assertFalse(e.enableRendering());
node.setAttribute(SVGAttributes.SVG_RX, "10"); //$NON-NLS-1$
node.setAttribute(SVGAttributes.SVG_RY, "0"); //$NON-NLS-1$
e = new SVGEllipseElement(node, null);
assertFalse(e.enableRendering());