Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/delete-to-join-inline-blocks.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
span {
display: inline-block;
}
</style>
<script>
"use strict";
document.addEventListener("DOMContentLoaded", () => {
document.querySelector("div[contenteditable]").focus();
getSelection().collapse(document.querySelector("span + span"), 0);
document.execCommand("delete");
});
</script>
<body>
<div contenteditable>
<span>A</span>
<span>B</span>
</div>
</body>
</html>