1<html> 2<head> 3 4<style> 5.editing { 6 border: 2px solid red; 7 padding: 12px; 8 font-size: 24px; 9} 10</style> 11 12<title>Korean Input Space Test</title> 13</head> 14<body> 15<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> 16 17<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> 18<div contenteditable id="root" class="editing"> 19 20</div> 21 22<script> 23runEditingTest(); 24</script> 25 26</body> 27</html> 28