LinkedList<Node> elems = DOMUtilInternal.getChildElementListWithTagNameNS(doc,NamespaceUtil.XHTML_NAMESPACE,"input",true);
if (elems != null)
{
for(Iterator<Node> it = elems.iterator(); it.hasNext(); )
{
HTMLInputElement elem = (HTMLInputElement)it.next();
if (DOMUtilHTML.isHTMLInputFile(elem) && elem.hasAttribute("value"))
{
if (attributes == null) attributes = new HashMap<Element,Attr>();
processInputFileElement(elem,attributes,doc);
}
}