summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/caret-outside-block.html
blob: cd9364d9bd9177f5817e8419c02273a835bb5828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
    <script src="resources/text-based-repaint.js"></script>
    <script>
        function repaintTest()
        {
            var target = document.getElementById("target");
            getSelection().setBaseAndExtent(target.firstChild, 43, target.firstChild, 43);
        }
    </script>
</head>
<body onload="runRepaintTest()">
    <div id="target" style="-webkit-user-modify: read-write; text-align: right; outline: none;">The caret should be at the end of this line</div>
</body>