blob: 3422f93b18065542c4de0b87e32e811dd2a7d892 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#test {
font-size: 300%;
text-align: left;
direction: rtl;
unicode-bidi: bidi-override;
}
</style>
</head>
<body>
The composition underline should be under "XYZ".
<div id=test contenteditable></div>
<script>
document.getElementById('test').focus();
if (window.testRunner) {
textInputController.insertText("abc");
textInputController.setMarkedText("XYZ", 3, 0);
}
</script>
</body>
</html>