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-around-orphan-rb.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
document.addEventListener("DOMContentLoaded", async () => {
document.documentElement.contentEditable = "plaintext-only";
getSelection().collapse(document.body.lastChild, 0);
document.execCommand("delete");
}, {once: true});
// FYI: The white-space only text node in <rb> is important.
</script>
</head>
<body>
<rb>
</rb>
</body>
</html>