Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/forms/crashtests/crashtests.list
<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>