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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/body-background-image.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 PUBLIC "-//W3C//DTD HTML 4.0//EN">
2 <html>
3 <head>
4 <title></title>
5 <script src="resources/text-based-repaint.js"></script>
6 <script>
7 function repaintTest()
8 {
9 document.body.style.backgroundImage='url(resources/apple.jpg)';
10 }
11 </script>
12 <style>
13 HTML { background: white; }
14 BODY { background: white no-repeat top center; }
15 HTML, BODY { padding-top: 232px; }
16 </style>
17 </head>
18 <body onload="runRepaintTest()">
19 <p>
20 Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=1515 7">http://bugs.webkit.org/show_bug.cgi?id=15157</a>
21 Image defined in background-position: top center gets unexpectedly trunc ated</i>.
22 </p>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698