Index: third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache.html b/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache.html |
deleted file mode 100644 |
index f13b443d402a5951c99292395a668b53e573fb89..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/block-selection-gap-stale-cache.html |
+++ /dev/null |
@@ -1,21 +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><div id="target" style="display: inline-block; width: 100px; height: 50px;"></div><br></div> |
-<script> |
- var sel = getSelection(); |
- var target = document.getElementById("target"); |
- |
- sel.setBaseAndExtent(target, 0, target.parentElement.nextSibling, 0); |
- document.body.offsetTop; |
- target.style.height = "100px"; |
-</script> |