Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/remove-editing-host-on-DOMNodeInserted-at-indent.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
document.addEventListener("DOMContentLoaded", () => {
const editingHost = document.querySelector("h6[contenteditable]");
document.querySelector("wbr").addEventListener(
"DOMNodeInserted",
() => editingHost.remove()
);
window.find("A");
document.execCommand("indent");
})
</script>
</head>
<body>
<h6 contenteditable>
<time>
<wbr>
<main></main>
A
</time></h6></body>
</html>