hc_domimplementationfeaturenoversionpublic final class hc_domimplementationfeaturenoversion extends org.w3c.domts.DOMTestCase Load a document and invoke its
"getImplementation()" method. This should create a
DOMImplementation object whose "hasFeature(feature,
version)" method is invoked with version equal to "".
If the version is not specified, supporting any version
feature will cause the method to return "true". |
Constructors Summary |
---|
public hc_domimplementationfeaturenoversion(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "hc_staff", false);
|
Methods Summary |
---|
public java.lang.String | getTargetURI()Gets URI that identifies the test.
return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_domimplementationfeaturenoversion";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(hc_domimplementationfeaturenoversion.class, args);
| public void | runTest()Runs the test case.
Document doc;
DOMImplementation domImpl;
boolean state;
doc = (Document) load("hc_staff", false);
domImpl = doc.getImplementation();
if (("text/html".equals(getContentType()))) {
state = domImpl.hasFeature("HTML", "");
} else {
state = domImpl.hasFeature("XML", "");
}
assertTrue("hasFeatureBlank", state);
|
|