Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <body> | |
| 3 <p id="target">Some Text</p> | |
| 4 <p>This tests caret placement when clicked once on existing selection in readonl y texts to allow further selection using keys.</p> | |
|
Yuta Kitamura
2014/06/04 08:19:38
You can use description() function from js-test to
b.rout
2014/06/04 12:53:04
Ok.
| |
| 5 <div id="console"></div> | |
|
Yuta Kitamura
2014/06/04 08:19:38
js-test automatically creates the element for outp
b.rout
2014/06/04 12:53:04
Actually, I want the HTML content to come before t
| |
| 6 <script src="../../resources/js-test.js"></script> | |
| 7 <script> | |
| 8 if (window.testRunner) { | |
|
Yuta Kitamura
2014/06/04 08:19:38
As a general rule, it is recommended to make the t
b.rout
2014/06/04 12:53:04
Ok. I will update the tests with instructions to m
| |
| 9 testRunner.overridePreference("WebKitEnableCaretBrowsing", false); | |
| 10 testRunner.dumpAsText(); | |
| 11 | |
| 12 target = document.getElementById('target'); | |
| 13 target.focus(); | |
| 14 | |
| 15 eventSender.mouseMoveTo(target.offsetLeft, target.offsetTop); | |
| 16 eventSender.mouseDown(); | |
| 17 eventSender.mouseMoveTo(target.offsetLeft + target.offsetWidth, target.o ffsetTop); | |
| 18 eventSender.mouseUp(); | |
| 19 | |
| 20 eventSender.mouseMoveTo(target.offsetLeft + (target.offsetWidth / 3), ta rget.offsetTop); | |
| 21 eventSender.mouseDown(); | |
| 22 eventSender.mouseUp(); | |
| 23 shouldBeEqualToString("getSelection().type", "Caret"); | |
| 24 } | |
| 25 </script> | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |