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

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

Issue 251433002: Remove calls to testRunner testRepaint/repaintSweep* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add focus-ring expectation Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript"> 3 <script type="text/javascript">
4 if (window.testRunner) { 4 if (window.internals) {
5 testRunner.testRepaint(); 5 window.internals.settings.setForceCompositingMode(true);
6 testRunner.repaintSweepHorizontally();
7 } 6 }
8 </script> 7 </script>
9 <style> 8 <style>
10 div { margin: 30px; } 9 div { margin: 30px; }
11 div > span { background: silver; font-size: 18px; } 10 div > span { background: silver; font-size: 18px; }
12 .tl { text-shadow: red -10px -10px 0; } 11 .tl { text-shadow: red -10px -10px 0; }
13 .br { text-shadow: red 10px 10px 0; } 12 .br { text-shadow: red 10px 10px 0; }
14 </style> 13 </style>
15 </head> 14 </head>
16 <body> 15 <body>
17 <p> 16 <p>
18 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> 17 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>
19 Text shadow does not repaint correctly</i>. 18 Text shadow does not repaint correctly</i>.
20 </p> 19 </p>
21 <hr> 20 <hr>
22 <div> 21 <div>
23 <span class="tl">Lorem ipsum dolor sit amet</span> 22 <span class="tl">Lorem ipsum dolor sit amet</span>
24 </div> 23 </div>
25 <div> 24 <div>
26 <span class="br">Lorem ipsum dolor sit amet</span> 25 <span class="br">Lorem ipsum dolor sit amet</span>
27 </div> 26 </div>
28 <div> 27 <div>
29 Lorem ipsum <span class="tl">dolor sit amet</span> 28 Lorem ipsum <span class="tl">dolor sit amet</span>
30 </div> 29 </div>
31 <div> 30 <div>
32 <span class="br">Lorem ipsum</span> dolor sit amet 31 <span class="br">Lorem ipsum</span> dolor sit amet
33 </div> 32 </div>
34 </body> 33 </body>
35 </html> 34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698