summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/insertunorderedlist-in-empty-inline-editing-host.html
blob: 74b0993322eda076a13023c96261840eadd53339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test for bug 615015 of Mozilla</title>
<script>
function boom()
{
  document.getElementById("j").focus();
  try {
    document.execCommand("insertunorderedlist", false, null);
  } catch(e) { }
}
</script>
</head>
<body onload="boom();"><span><span contenteditable id="j"></span>T</span></body>
</html>