*/
public double getHeight() {
final String v = getAttribute(getUsablePrefix()+SVGAttributes.SVG_HEIGHT);
double height;
try { height = v==null ? 1. : new SVGLengthParser(v).parseLength().getValue(); }
catch(final ParseException e) { height = 1.; }
return height; //FIXME: doit retourner 100%
}