Non-file inputs cannot be changed to file inputs via JavaScript
https://bugs.webkit.org/show_bug.cgi?id=44881
Summary Non-file inputs cannot be changed to file inputs via JavaScript
Aryeh Gregor
Reported 2010-08-30 12:03:31 PDT
Test case: <!doctype html> <script> var el = document.createElement("input"); el.type = "radio"; el.type = "file"; alert(el.type); </script> Chrome dev (on Ubuntu) and Safari 5 (on XP) alert "radio". Recentish Firefox nightly and Opera 10.60 alert "file". The latter is certainly correct per spec. If there's some security reason for this, the spec should be changed to mandate it so we have interoperability.
Attachments
Alexey Proskuryakov
Comment 1 2012-03-05 11:32:27 PST
*** Bug 80213 has been marked as a duplicate of this bug. ***
Note You need to log in before you can comment on or make changes to this bug.