gecko/editor/libeditor/base/crashtests/402172-1.html
jruderman@hmc.edu 571039b47c Add crashtest.
2008-02-03 21:54:51 -08:00

24 lines
388 B
HTML

<html>
<head>
<script>
function boom()
{
document.getElementById("div").contentEditable = "true";
document.getElementById("div").focus();
document.getElementById("div").contentEditable = "false";
document.getElementById("table").contentEditable = "true";
}
</script>
</head>
<body onload="boom();">
<table id="table"><td></td></table><div id="div"></div>
</body>
</html>