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-at-next-to-svg-display-table-cell.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
addEventListener("load", async () => {
document.documentElement.setAttribute("contenteditable", "true");
getSelection().collapse(document.body.lastChild, document.body.lastChild.length);
document.execCommand("delete");
});
</script>
</head>
<body><svg>
<svg display="table-cell">
</svg>
</svg>
</body>
</html>