Index: third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache-2.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache-2.html b/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache-2.html |
deleted file mode 100644 |
index adfd5bc1eb3a5c3a99276572c36b485033978f6a..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache-2.html |
+++ /dev/null |
@@ -1,23 +0,0 @@ |
-<head> |
- <style> |
- ::selection { background-color: red; } |
- </style> |
- <script type="text/javascript" charset="utf-8"> |
- function runTest() |
- { |
- sel.empty(); |
- } |
- </script> |
-</head> |
-<body onload="runTest()"> |
-<div style="height: 100px; overflow-y: scroll;"> |
- <div style="margin-top: 50px;"><div id="target" style="display: inline-block; width: 100px; height: 100px;"></div><br></div> |
-</div> |
-<script> |
- var sel = getSelection(); |
- var target = document.getElementById("target"); |
- |
- sel.setBaseAndExtent(target, 0, target.parentElement.nextSibling, 0); |
- document.body.offsetTop; |
- target.parentElement.parentElement.scrollTop = 50; |
-</script> |