summaryrefslogtreecommitdiffstats
path: root/layout/forms/crashtests/570624-1.html
blob: 47a2777282c25be75ddd835690c25e141514bb8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
  var xt = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'textbox');
  document.body.appendChild(xt);
  xt.setAttribute('disabled', "true");
  xt.setAttribute('value', "foo");
}
</script>
</head>
<body onload="boom();">
</body>
</html>