* @exception CSSException If this selector is not supported.
*/
public ElementSelector createElementSelector(String namespaceURI, String localName)
throws CSSException {
if (namespaceURI != null) {
throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR);
} else {
return new ElementSelectorImpl(localName);
}
}