haikuwebkit/ManualTests/korean-input-space.html

28 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<html>
<head>
<style>
.editing {
border: 2px solid red;
padding: 12px;
font-size: 24px;
}
</style>
<title>Korean Input Space Test</title>
</head>
<body>
<p>This tests that a space used to terminate a marked sequence of characters produces a non breaking space in the editor, so that the space is actually visible in the document.</p>
<p>Switch to Korean 2-Set, hit return, arrow up, type 'q', hit space. You should see 'ㅂ' followed by a space, and the carat should be after the space.</p>
<div contenteditable id="root" class="editing">
</div>
<script>
runEditingTest();
</script>
</body>
</html>