Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/inserthorizontalrule-with-range-ending-in-collapsible-spaces-before-comment.html - WPT Dashboard Interop Dashboard
<!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>