summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/504183-1.html
blob: e44db41520f3b3cb2451ce18c3775df360d03dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html class="reftest-wait">
<input id="a" type="file">
<script>
function doe() {
var elem = document.getElementById('a');
elem.style.display = "none";
elem.focus();
document.documentElement.className = "";
}
setTimeout(doe, 0);
</script>
</html>