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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/background-image-paint-invalidation-large-abspos-div.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 <!DOCTYPE html>
2
3 <body>
4 <div style="position: absolute; height:4000px; width: 100px;"></div>
5 </body>
6 <img src="resources/ducky.png"></img>
7 <script>
8 if (window.testRunner)
9 window.testRunner.waitUntilDone();
10 window.onload = function() {
11 document.body.style.background = 'url(resources/ducky.png)';
12 window.scrollTo(0, 3000);
13 if (window.testRunner)
14 testRunner.notifyDone();
15 }
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698