Index: LayoutTests/fast/repaint/background-image-paint-invalidation-large-abspos-div.html |
diff --git a/LayoutTests/fast/repaint/background-image-paint-invalidation-large-abspos-div.html b/LayoutTests/fast/repaint/background-image-paint-invalidation-large-abspos-div.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ec165c17f18b118befb91e95f09a2eeabf851be8 |
--- /dev/null |
+++ b/LayoutTests/fast/repaint/background-image-paint-invalidation-large-abspos-div.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+ |
+<body> |
+ <div style="position: absolute; height:4000px; width: 100px;"></div> |
+</body> |
+<img src="resources/ducky.png"></img> |
+<script> |
+if (window.testRunner) |
+ window.testRunner.waitUntilDone(); |
+window.onload = function() { |
+ requestAnimationFrame(function() { |
+ document.body.style.background = 'url(resources/ducky.png)'; |
+ window.scrollTo(0, 3000); |
+ if (window.testRunner) |
+ testRunner.notifyDone(); |
+ }); |
+} |
+</script> |