haikuwebkit/ManualTests/caret-in-columns-flipped.html

26 lines
517 B
HTML

<p>
(Read from bottom to top)
</p>
<div id="target" style="
margin: 100px;
-webkit-columns: 3;
width: 300px;
height: 100px;
-webkit-user-modify: read-write;
-webkit-writing-mode: horizontal-bt;
outline: none;
">
<br>
<br>
<br>
<br>
<br>
<br>
The blinking insertion point should be here &rarr;
</div>
<script>
var target = document.getElementById("target");
target.focus();
getSelection().modify("move", "forward", "documentboundary");
</script>