blob: 408cc54c825eb98909e6d1f508e95a9267e28f9d [file] [log] [blame]
<!DOCTYPE html>
<style>
html {
display: table;
}
</style>
<script>
if (window.testRunner)
window.testRunner.dumpAsText();
onload = () => {
document.designMode = 'on';
getSelection().selectAllChildren(document.body);
document.execCommand('InsertNestedUnorderedList');
document.body.append(document.createElement('div'));
document.body.innerHTML += '';
document.execCommand('Delete');
document.write("Test passes if it does not crash.");
};
</script>
<body>
</body>