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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/text-shadow-horizontal.html

Issue 2327223002: Move all remaining fast/repaint tests 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 <html>
2 <head>
3 <style>
4 div { margin: 30px; }
5 div > span { background: silver; font-size: 18px; }
6 .tl { text-shadow: red -10px -10px 0; }
7 .br { text-shadow: red 10px 10px 0; }
8 </style>
9 </head>
10 <body>
11 <p>
12 This is a regression test for <i><a href="https://bugs.webkit.org/show_bug.c gi?id=7301">http://bugzilla.opendarwin.org/show_bug.cgi?id=7301</a>
13 Text shadow does not repaint correctly</i>.
14 </p>
15 <hr>
16 <div>
17 <span class="tl">Lorem ipsum dolor sit amet</span>
18 </div>
19 <div>
20 <span class="br">Lorem ipsum dolor sit amet</span>
21 </div>
22 <div>
23 Lorem ipsum <span class="tl">dolor sit amet</span>
24 </div>
25 <div>
26 <span class="br">Lorem ipsum</span> dolor sit amet
27 </div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698