Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/indent-in-inline-editing-host-outside-body.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
addEventListener("load", () => {
const samp = document.createElement("samp");
samp.innerText = "ABC";
samp.contentEditable = true;
document.documentElement.appendChild(samp);
getSelection().selectAllChildren(samp);
document.execCommand("indent");
});
</script>
</head>
<body>
</body>
</html>