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

Side by Side Diff: LayoutTests/editing/selection/caret-in-textarea-auto.html

Issue 302433015: Use correct offset when attribute auto is present (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Position trying to look in multiple level for direction auto Created 6 years, 6 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 <html>
3 <body>
esprehn 2014/06/04 18:02:03 We usually leave off the <html>, <head> and <body>
4 <script src="../../resources/js-test.js"></script>
5 <textarea id="textarea" dir="auto" style="font-size: 20px; width: 20ex; border: solid thin black; padding: 10px;">&#x05d0;!</textarea>
6 <script>
7 description('Test caret position in a textarea with direction auto and having RT L text. When entering a LTR text caret position is changed.');
8 var textarea = document.getElementById('textarea');
9 textarea.focus();
10 var caretRect = textInputController.firstRectForCharacterRange(0, 0);
11 shouldBe('caretRect[0]', '198');
12 shouldBe('caretRect[1]', '101');
13
14 window.testRunner.execCommand('MoveToEndOfLine');
15 document.execCommand('InsertLineBreak');
16 document.execCommand('InsertText', false, 'hello!');
17 caretRect = textInputController.firstRectForCharacterRange(1, 0);
18 shouldBe('caretRect[0]', '187');
19 shouldBe('caretRect[1]', '133');
20 </script>
21 </body>
22 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/editing/selection/caret-in-textarea-auto-expected.txt » ('j') | Source/core/dom/Position.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698