mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|