403148-1.html (329B)
1 <html> 2 <head> 3 <script> 4 5 function boom() 6 { 7 document.getElementById("ce").contentEditable = true; 8 document.documentElement.offsetHeight; 9 document.getElementById("finput").setAttribute("type", ""); 10 } 11 12 </script> 13 </head> 14 15 <body onload="boom();"> 16 17 <input id="finput" type="file" disabled> 18 19 <span id="ce"></span> 20 21 </body> 22 </html>