OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Try editing lines in the second column. The caret should be |
| 3 visible, and there should also be no junk rectangles below the |
| 4 first column.</p> |
| 5 <div style="position:absolute; left:100px; top:100px; padding:10px; line-height:
20px; width:400px; height:100px; background:yellow;" contenteditable> |
| 6 <div style="float:left; width:200px;"> |
| 7 line1<br> |
| 8 line2<br> |
| 9 line3<br> |
| 10 line4<br> |
| 11 line5<br> |
| 12 </div> |
| 13 line6<br> |
| 14 <span id="target">line7</span><br> |
| 15 line8<br> |
| 16 </div> |
| 17 <script> |
| 18 if (window.eventSender && window.internals) { |
| 19 eventSender.mouseMoveTo(320, 140); |
| 20 eventSender.mouseDown(); |
| 21 eventSender.mouseUp(); |
| 22 } |
| 23 </script> |
OLD | NEW |