tenfourfox/layout/xul/crashtests/415394-1.xhtml
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
755 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
class="reftest-wait">
<head>
<script type="text/javascript">
function boom()
{
document.execCommand("justifycenter", false, null);
var listboxbody = document.getElementById("lbb");
listboxbody.height = 9;
setTimeout(boom2, 0);
function boom2()
{
var td = document.createElementNS("http://www.w3.org/1999/xhtml", "td");
listboxbody.appendChild(td);
document.documentElement.removeAttribute("class");
}
}
</script>
</head>
<body onload="setTimeout(boom, 0);" contenteditable="true"><xul:listboxbody id="lbb"><xul:hbox/><span><col style="width: 100px;" /></span></xul:listboxbody></body>
</html>