Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/insertunorderedlist-in-empty-inline-editing-host.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function boom()
{
document.getElementById("j").focus();
try {
document.execCommand("insertunorderedlist", false, null);
} catch(e) { }
}
</script>
</head>
<body onload="boom();"><span><span contenteditable id="j"></span>T</span></body>
</html>