Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/forwarddelete-in-text-in-span-in-editable-documentElement.html - WPT Dashboard Interop Dashboard
<!doctype html>
<script>
addEventListener("load", () => {
const r = document.documentElement;
while (r.firstChild) {
r.firstChild.remove();
}
document.documentElement.contentEditable = "true";
document.documentElement.appendChild(document.createElement("span"));
document.documentElement.firstChild.appendChild(document.createTextNode("_"));
document.execCommand("forwarddelete");
});
</script>
<body>