$("#id_of_your_file_input").click(function(){
$("#id_of_your_file_input").val('');
});
Just add the above jQuery script to handle this browser exception. What it does is clearing the file input every time someone clicks on it, so that it will remove the current selection.