/**
* <b>DOM</b>: Implements {@link
* org.w3c.dom.svg.SVGImageElement#getHeight()}.
*/
public SVGAnimatedLength getHeight() {
SVGAnimatedLength result;
if (heightReference == null ||
(result = (SVGAnimatedLength)heightReference.get()) == null) {
result = new SVGOMAnimatedLength(this, null, SVG_HEIGHT_ATTRIBUTE, null);
heightReference = new WeakReference(result);
}