| Index: Source/WebKit/chromium/tests/data/move_caret.html
|
| diff --git a/Source/WebKit/chromium/tests/data/move_caret.html b/Source/WebKit/chromium/tests/data/move_caret.html
|
| index 3db406e603b33174fa6809d5a0ee6405e3b48250..4dd24a000157bcdc2f2f40ea2dc0776e888629c2 100644
|
| --- a/Source/WebKit/chromium/tests/data/move_caret.html
|
| +++ b/Source/WebKit/chromium/tests/data/move_caret.html
|
| @@ -3,11 +3,16 @@
|
| <body>
|
| <input id='target' type='text' value='16-char header. ^^ 16-char footer.'></input>
|
| <script>
|
| - function select() {
|
| + function selectCaret() {
|
| var text = document.getElementById('target');
|
| text.focus();
|
| text.setSelectionRange(17, 17);
|
| }
|
| + function selectRange() {
|
| + var text = document.getElementById('target');
|
| + text.focus();
|
| + text.setSelectionRange(16, 18);
|
| + }
|
| window.onload = select;
|
| </script>
|
| </body>
|
|
|