| Index: LayoutTests/fast/css/sticky/remove-sticky-crash.html
|
| diff --git a/LayoutTests/fast/css/sticky/remove-sticky-crash.html b/LayoutTests/fast/css/sticky/remove-sticky-crash.html
|
| deleted file mode 100644
|
| index 071a05492f036bd0c418003d0ac3831a2641569d..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/css/sticky/remove-sticky-crash.html
|
| +++ /dev/null
|
| @@ -1,39 +0,0 @@
|
| -<!DOCTYPE html>
|
| -
|
| -<html>
|
| -<head>
|
| -<style>
|
| - body {
|
| - margin: 0;
|
| - height: 2000px;
|
| - }
|
| -
|
| - .box {
|
| - width: 200px;
|
| - height: 200px;
|
| - }
|
| -
|
| - .sticky {
|
| - position: sticky;
|
| - top: 100px;
|
| - background-color: green;
|
| - }
|
| -</style>
|
| -<script>
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - function doTest()
|
| - {
|
| - var stickyBox = document.getElementById('sticky');
|
| - stickyBox.parentNode.removeChild(stickyBox);
|
| - window.scrollTo(0, 10);
|
| - }
|
| - window.addEventListener('load', doTest, false);
|
| -</script>
|
| -</head>
|
| -<body>
|
| - <p>This test should not crash</p>
|
| - <div id="sticky" class="sticky box"></div>
|
| -</body>
|
| -</html>
|
|
|