haikuwebkit/LayoutTests/editing/execCommand/indent-inline-box-crash.html

22 lines
404 B
HTML

<!DOCTYPE html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
onload = function () {
document.designMode = 'on';
document.execCommand('SelectAll')
document.execCommand('Indent');
document.body.textContent = 'Pass if not crash.';
};
</script>
</head>
<body style="display: -webkit-inline-box">
<ol style="display: -webkit-inline-box">
<br>
foo
</ol>
</body>
</html>