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

Side by Side Diff: LayoutTests/fast/repaint/background-image-paint-invalidation-large-abspos-div.html

Issue 683373002: Invalidate the frame view when changing the background image of the document or body. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Cleanup. Created 6 years, 1 month 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
(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 requestAnimationFrame(function() {
12 document.body.style.background = 'url(resources/ducky.png)';
13 window.scrollTo(0, 3000);
14 if (window.testRunner)
15 testRunner.notifyDone();
16 });
17 }
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698