Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/outdent-editing-host-containing-combining-diacritical-mark.html - WPT Dashboard Interop Dashboard
<html class="test-wait">
<head>
<meta charset="utf-8">
<script>
function boom()
{
document.body.contentEditable = "true";
getSelection().collapse(document.body.firstChild, 0);
document.execCommand("outdent");
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body style="word-spacing: 3px;" onload="boom();"> ́</body>
</html>