Index: third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html |
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a020aa910c8e1cd03241cb29264b28b3dc460faf |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/fixed-with-border-under-composited-absolute-scrolled-expected.html |
@@ -0,0 +1,18 @@ |
+<!DOCTYPE html> |
+<script> |
+onload = function() { window.scrollTo(0, 400); } |
+</script> |
+<style> |
+body { height: 1985px; } |
+#target { |
+ position: absolute; |
+ top: 400px; |
+ left: 0; |
+ width: 100px; |
+ height: 200px; |
+ /* The colors are results of blended 99% green/blue and 1% red. */ |
+ border: 10px solid rgb(3, 0, 252); |
+ background-color: rgb(3, 126, 0); |
+} |
+</style> |
+<div id="target"></div> |