mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
20 lines
403 B
HTML
20 lines
403 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var f = document.createElementNS("http://www.w3.org/1999/xhtml", "input");
|
|
f.setAttributeNS(null, "type", "file");
|
|
document.body.appendChild(f);
|
|
f.style.whiteSpace = "pre-line";
|
|
f.style.display = "flex";
|
|
document.body.style.transitionTimingFunction = "linear";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|