| Index: third_party/WebKit/LayoutTests/paint/invalidation/fixed-under-composited-absolute-scrolled-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/fixed-under-composited-absolute-scrolled-expected.html b/third_party/WebKit/LayoutTests/paint/invalidation/fixed-under-composited-absolute-scrolled-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..15ec5ae4748e0b3a36bffffeccf566532202203e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/fixed-under-composited-absolute-scrolled-expected.html
|
| @@ -0,0 +1,17 @@
|
| +<!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;
|
| + /* Result of blended 99% green and 1% red */
|
| + background-color: rgb(3, 126, 0);
|
| +}
|
| +</style>
|
| +<div id="target"></div>
|
|
|