Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/execCommand-at-load-with-changing-editing-host.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html contenteditable="true">
<head>
<meta charset="utf-8">
<script>
function boom()
{
document.documentElement.appendChild(document.body);
document.documentElement.contentEditable = "false";
try { document.execCommand("outdent", false, null); } catch(e) { }
document.body.contentEditable = "true";
try { document.execCommand("inserthtml", false, "x"); } catch(e) { }
}
</script>
</head>
<body onload="boom();"><div style="margin-left: 40px;"><span contenteditable="true">p q r s</span> T</div></body></html>