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-before-first-child-of-editing-host.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<body>
<!-- For this test it is important that there are no text nodes in the inner div -->
<div id="outer" contenteditable="true">
<div contenteditable="true"><span></span></div>
</div>
<script>
"use strict";
const span = document.querySelector('span');
document.getElementById('outer').textContent = "Text";
const range = document.createRange();
getSelection().addRange(range);
range.setEndBefore(span);
document.execCommand("delete");
</script>
</body>
</html>