summaryrefslogtreecommitdiffstats
path: root/layout/forms/crashtests/403148-1.html
blob: cfb38fdb132a632f9d5a29463d1343983e4e5b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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>