mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
23 lines
329 B
HTML
23 lines
329 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("ce").contentEditable = true;
|
|
document.documentElement.offsetHeight;
|
|
document.getElementById("finput").setAttribute("type", "");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<input id="finput" type="file" disabled>
|
|
|
|
<span id="ce"></span>
|
|
|
|
</body>
|
|
</html>
|