haikuwebkit/ManualTests/autocorrection/undo-autocorrection.html

22 lines
516 B
HTML

<html>
<head>
<style>
.editing {
border: 2px solid red;
padding: 12px;
font-size: 24px;
}
</style>
<title>Undo Autocorrection Test</title>
</head>
<body>
<div><p>This test verifies the behavior of undoing autocorrection.</p>
<p>Type "the mesage". After seeing the correction panel, type whitespace to accept the correction, then select undo. You should see the second word being reverted to "message".</p>
<div contenteditable id="root1" class="editing">
<span id="test"></span>
</div>
</body>
</html>