chromium/third_party/blink/web_tests/external/wpt/editing/crashtests/inserthorizontalrule-with-range-ending-in-collapsible-spaces-before-comment.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
  getSelection().setBaseAndExtent(
    document.querySelector("b"), 0,
    document.querySelector("i").firstChild, 2
  );
  document.documentElement.contentEditable = true;
  document.execCommand("insertHorizontalRule");
});
</script>
</head>
<body>
<div>
<b>
</b>
<i>X
</i>
<!-- COMMENT -->
</div>
</body>
</html>