| Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflow-changed-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflow-changed-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflow-changed-expected.html
|
| deleted file mode 100644
|
| index a5ba103a064d0a02e45199b943d35ca0a1c734ff..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-overflow-changed-expected.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<style>
|
| -body {
|
| - margin: 0;
|
| - height: 2000px;
|
| - overflow: hidden; /* hide scrollbars */
|
| -}
|
| -
|
| -#container {
|
| - background-color: green;
|
| - width: 200px;
|
| - height: 400px;
|
| - outline: 2px solid black;
|
| - overflow: auto;
|
| -}
|
| -
|
| -.box {
|
| - width: 200px;
|
| - height: 200px;
|
| -}
|
| -
|
| -.sticky {
|
| - position: relative;
|
| - top: 0px;
|
| - background-color: red;
|
| -}
|
| -
|
| -</style>
|
| -<script>
|
| -function doTest()
|
| -{
|
| - window.scrollTo(0, 200);
|
| -}
|
| -window.addEventListener('load', doTest, false);
|
| -</script>
|
| -<div id="container">
|
| - <div class="sticky box"></div>
|
| -</div>
|
|
|