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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/selection/invalidation-rect-includes-newline-for-rtl.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 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
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/ahem.js"></script>
3 <script src="../resources/text-based-repaint.js"></script>
4 <script src="../../../paint/selection/resources/selection.js"></script>
5 <script>
6 // Selects two lines and expects a newline to be represented.
7 function repaintTest() {
8 selectRange(container, 0, container, 1);
9 };
10 window.onload = runRepaintAndPixelTest;
11 </script>
12 <style>
13 div {
14 direction: rtl;
15 font-family: Ahem;
16 unicode-bidi: bidi-override;
17 width: 2em;
18 }
19 </style>
20 <div id="container">
21 xx y
22 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698