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