Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position-scrolled-expected.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position-scrolled-expected.html b/third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position-scrolled-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1f5f69fb5bf1b1e1629a6063a0fb4cd78c16f960 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/css/containment/paint-containment-with-fixed-position-scrolled-expected.html |
| @@ -0,0 +1,22 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +div { |
| + width: 100px; |
| + height: 100px; |
| +} |
| +.box { |
| + background-color: green; |
| +} |
| +.spacer { |
| + position:absolute; |
| + height: 2000px; |
| +} |
| +</style> |
| +<script> |
| +onload = function() { |
| + window.scrollTo(0, 25); |
| +}; |
| +</script> |
| +<body> |
| +<div class="spacer"></div> |
| +<div class="box"></div> |