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

Side by Side Diff: LayoutTests/paint/selection/text-selection-newline-br.html

Issue 1350973003: Invalidate line break selection rects when selected. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Don't need redundant early-out for selection rect. Created 5 years, 3 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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/ahem.js"></script> 4 <script src="../../resources/ahem.js"></script>
5 <script src="../../resources/run-after-layout-and-paint.js"></script> 5 <script src="../../resources/run-after-layout-and-paint.js"></script>
6 <script src="resources/selection.js"></script> 6 <script src="resources/selection.js"></script>
7 <style> 7 <style>
8 div { 8 div {
9 font-family: Ahem; 9 font-family: Ahem;
10 } 10 }
11 </style> 11 </style>
12 </head> 12 </head>
13 <body onload="selectRange(container, 0, container, 3);"> 13 <body onload="selectRangeAfterLayoutAndPaint(container, 0, container, 3);">
14 <!-- Two lines in one block explicitly wrapped with a br which should 14 <!-- Two lines in one block explicitly wrapped with a br which should
15 include space representing a newline at end of the first line. --> 15 include space representing a newline at end of the first line. -->
16 <div id="container"> 16 <div id="container">
17 a<br>b 17 a<br>b
18 </div> 18 </div>
19 </body> 19 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698