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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/selection/text-selection-newline-clipped-by-overflow.html

Issue 1817463004: Always apply parent clips to selection rects when painting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 <script src="resources/selection.js"></script>
3 <script>
4 // Selects two lines and expects a newline to be represented, but clipped by the containing div.
5 function run() {
6 selectNode(container);
7 };
8 window.onload = run;
9 </script>
10
11 <div id="container">
12 <div>
13 <div style="overflow:hidden; display: inline-block">test1</div>
14 </div>
15 test2
16 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698