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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text/whitespace/select-new-line-with-line-break-normal.html

Issue 2709983005: Selection API: Do not change focus by Selection functions. (Closed)
Patch Set: . Created 3 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Tests that we paint a selection when a newline is selected.</title> 2 <title>Tests that we paint a selection when a newline is selected.</title>
3 <div contentEditable style="width: 100px; height: 100px; border: 5px solid salmo n; -webkit-line-break: normal"> 3 <div contentEditable style="width: 100px; height: 100px; border: 5px solid salmo n; -webkit-line-break: normal">
4 fooooooooo baaaaaaaar 4 fooooooooo baaaaaaaar
5 </div> 5 </div>
6 <script> 6 <script>
7 var text = document.querySelector('div').firstChild 7 var text = document.querySelector('div').firstChild
8 text.parentNode.focus();
8 window.getSelection().setBaseAndExtent(text, 11, text, 12); 9 window.getSelection().setBaseAndExtent(text, 11, text, 12);
9 // We don't care about the text dump. This is just testing painting of the selec tion. 10 // We don't care about the text dump. This is just testing painting of the selec tion.
10 if (window.testRunner) 11 if (window.testRunner)
11 testRunner.dumpAsTextWithPixelResults(); 12 testRunner.dumpAsTextWithPixelResults();
12 </script> 13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698