Click on input file field to upload a file doesn't open any popup window to select the file.
line 394 of \dom\html\form\input\file\default.php :
'link_js' => 'jQuery(\'input[id=' . $id . ']\').click();',
it doesn't work for me (fresh joomla 3.1 installation).
but it works if I replace with:
'link_js' => 'jQuery(\'input[id="' . $id . '"]\').trigger("click");',
it seems it doesn't find the jquery DOM selector.