| Index: third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint.html b/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint.html
|
| deleted file mode 100644
|
| index 2e72c22ecbfaf26d9d8282116ab8d6b06d470c25..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/repaint/background-attachment-local-repaint.html
|
| +++ /dev/null
|
| @@ -1,29 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<style>
|
| -#container {
|
| - overflow: scroll;
|
| - width: 500px;
|
| - height: 400px;
|
| -
|
| - background-attachment: local;
|
| - background-image: linear-gradient(black, white);
|
| -}
|
| -
|
| -#bloat {
|
| - position: relative;
|
| - left: 0;
|
| - top: 500px;
|
| - width: 1px;
|
| - height: 1px;
|
| -}
|
| -</style>
|
| -<div id="container">
|
| - <div id="bloat"></div>
|
| -</div>
|
| -This test verifies a overflow clip container with background-attachment:local correctly repaints when its overflow changes size without scrolling.
|
| -<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| -<script>
|
| -runAfterLayoutAndPaint(function() {
|
| - document.getElementById("bloat").style.top = "10000px";
|
| -}, true);
|
| -</script>
|
|
|