summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/603490-1.html
blob: f665aab5a4fce2122487f06a64c13af93c5a9b23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html><html><script>

function boom()
{
  while (document.documentElement.firstChild)
    document.documentElement.removeChild(document.documentElement.firstChild);
  document.documentElement.contentEditable = "true";
  document.execCommand("strikethrough", false, null);
  try { document.execCommand("justifyfull", false, null); } catch(e) { }
  document.documentElement.offsetHeight;
  try { document.execCommand("delete", false, null); } catch(e) { }
  document.execCommand("inserthtml", false, "<span> <\/span>");
}
window.addEventListener("load", boom, false);

</script></html>