Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / caret-invalidation-in-overflow-scroll.html
1 <!DOCTYPE html>
2 <script src="resources/text-based-repaint.js"></script>
3 <body onload="runRepaintTest()">
4 The caret to the right should be blinking before the period.
5 <input id="target" style="width: 20px;" type="text" value="This is some really long text.">
6 <script>
7 var target = document.getElementById("target");
8 target.selectionStart = 30;
9 target.selectionEnd = 30;
10 target.focus()
11
12 function repaintTest()
13 {
14     target.selectionStart = 29;
15     target.selectionEnd = 29;
16 }
17 </script>