gecko-dev/editor/libeditor/crashtests/1348851.html
Makoto Kato 8854f13fca Bug 1348851 - Part 2. Add crash test. r=masayuki
MozReview-Commit-ID: 9QPwtwYfNa7

--HG--
extra : rebase_source : bd740815d460b4a536a42cd40f72c7cead5118fe
2017-03-21 14:36:52 +09:00

20 lines
379 B
HTML

<!DOCTYPE>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom(){
document.designMode = "on";
document.execCommand("insertlinebreak");
document.designMode = "off";
document.designMode = "on";
document.execCommand("insertunorderedlist");
}
addEventListener("DOMContentLoaded", boom);
</script>
</head>
<body style="display:flex;">
<!--comment-->
</body>
</html>