| Index: third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html b/third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html
|
| deleted file mode 100644
|
| index 7cbf27f6607084b98ba47c2f1f695ddbf0f7c903..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-after-move.html
|
| +++ /dev/null
|
| @@ -1,47 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="resources/text-based-repaint.js"></script>
|
| -<style>
|
| -
|
| -#scroller {
|
| - position: absolute;
|
| - left: 10px;
|
| - top: 60px;
|
| - height: 400px;
|
| - overflow: scroll;
|
| - width: 300px;
|
| - will-change: transform;
|
| -}
|
| -#block {
|
| - background-color: #cef;
|
| - height: 50px;
|
| - left: 50px;
|
| - position: absolute;
|
| - top: 200px;
|
| - width: 200px;
|
| -}
|
| -
|
| -</style>
|
| -</head>
|
| -<body onload="runRepaintAndPixelTest()">
|
| -
|
| -This tests that an element which is moved by the synchronous layout in
|
| -Element::setScrollTop, and again by the scroll itself, has its original
|
| -location correctly invalidated.
|
| -
|
| -<div id="scroller">
|
| - <div style="height: 900px"></div>
|
| - <div id="block"></div>
|
| -</div>
|
| -<script>
|
| -
|
| -function repaintTest()
|
| -{
|
| - document.querySelector("#block").style.top = '310px';
|
| - document.querySelector("#scroller").scrollTop = 150;
|
| -}
|
| -
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|