Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: third_party/WebKit/LayoutTests/editing/caret/in-multicol-child-expected.html

Issue 1819603003: Shift flowthread-to-visual coordinate space conversion one level up in the tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update unit tests. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698