org.htmlunit.activex.javascript.msxml.XMLDOMImplementation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xlt Show documentation
Show all versions of xlt Show documentation
XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.
The newest version!
/*
* Copyright (c) 2002-2024 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.htmlunit.activex.javascript.msxml;
import static org.htmlunit.javascript.configuration.SupportedBrowser.IE;
import org.htmlunit.javascript.JavaScriptEngine;
import org.htmlunit.javascript.configuration.JsxClass;
import org.htmlunit.javascript.configuration.JsxFunction;
/**
* A JavaScript object for MSXML's (ActiveX) XMLDOMImplementation.
* Provides methods that are independent of any particular instance of the Document Object Model (DOM).
* @see MSDN documentation
*
* @author Frank Danek
*/
@JsxClass(IE)
public class XMLDOMImplementation extends MSXMLScriptable {
/**
* Indicates support for the specified feature.
* @param feature a string that specifies the feature to test
* @param version a string that specifies the version number to test
* @return true if the specified feature is implemented; otherwise false
*/
@JsxFunction
public boolean hasFeature(final String feature, final String version) {
if (feature == null || "null".equals(feature) || version == null || "null".equals(version)) {
throw JavaScriptEngine.reportRuntimeError("Type mismatch.");
}
if ("XML".equals(feature) && "1.0".equals(version)) {
return true;
}
if ("DOM".equals(feature) && "1.0".equals(version)) {
return true;
}
if ("MS-DOM".equals(feature) && ("1.0".equals(version) || "2.0".equals(version))) {
return true;
}
return false;
}
}