1 2 package org.w3c.dom.svg;3 4 import org.w3c.dom.Document ;5 import org.w3c.dom.events.DocumentEvent ;6 7 public interface SVGDocument extends 8 Document ,9 DocumentEvent {10 public String getTitle( );11 public String getReferrer( );12 public String getDomain( );13 public String getURL( );14 public SVGSVGElement getRootElement( );15 }16