summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/w3c/dom/svg/SVGTests.java
blob: 4e0d6a4e2366545a96ca58546c018b9881f12c13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10

package org.w3c.dom.svg;

public interface SVGTests {
  public SVGStringList getRequiredFeatures( );
  public SVGStringList getRequiredExtensions( );
  public SVGStringList getSystemLanguage( );

  public boolean hasExtension ( String extension );
}