Index: LayoutTests/fast/scrolling/non-composited-scrolling-repaint-local-background-expected.html |
diff --git a/LayoutTests/fast/scrolling/non-composited-scrolling-repaint-local-background-expected.html b/LayoutTests/fast/scrolling/non-composited-scrolling-repaint-local-background-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d8747790bde027c360a1861c4d2ba7327396f69c |
--- /dev/null |
+++ b/LayoutTests/fast/scrolling/non-composited-scrolling-repaint-local-background-expected.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<style> |
+#container { |
+ overflow: scroll; |
+ width: 400px; |
+ height: 300px; |
+ background: linear-gradient(black, white); |
+ background-attachment: local; |
+} |
+ |
+#bloat { |
+ height: 1000px; |
+} |
+</style> |
+<div id="container"> |
+ <div id="bloat"></div> |
+</div> |
+<script> |
+ document.getElementById('container').scrollTop = 1000; |
+</script> |