Index: third_party/WebKit/LayoutTests/fast/repaint/table-hover-on-link.html |
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/table-hover-on-link.html b/third_party/WebKit/LayoutTests/fast/repaint/table-hover-on-link.html |
deleted file mode 100644 |
index 65ba549167d0bc94744aadf9ffb74e58003b7eac..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/repaint/table-hover-on-link.html |
+++ /dev/null |
@@ -1,55 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
-html { |
- font-size: 10px; |
- font-family: Ahem; |
- -webkit-font-smoothing: none; |
-} |
- |
-a { |
- color: #0F0; |
- background: #F00; |
-} |
-a:hover { |
- background: #0F0; |
-} |
- |
-#table { |
- display: table; |
- overflow: hidden; |
-} |
-</style> |
-<script> |
- function runTest() |
- { |
- if (window.testRunner) |
- window.testRunner.dumpAsTextWithPixelResults(); |
- |
- var table = document.getElementById("table"); |
- var tableBox = table.getBoundingClientRect(); |
- var tableCenterX = (tableBox.left + tableBox.right) / 2; |
- var tableCenterY = (tableBox.top + tableBox.bottom) / 2; |
- |
- if (window.eventSender) { |
- eventSender.mouseMoveTo(tableCenterX, tableCenterY); |
- eventSender.mouseDown(); |
- eventSender.mouseUp(); |
- } |
- window.stop(); |
- } |
- window.addEventListener("load", runTest); |
-</script> |
-</head> |
-<body> |
-<!-- |
- REGRESSION(r110072): :hover doesn't work on table child with overflow: hidden |
- http://webkit.org/b/81460 |
- To test this bug outside DRT, hover on the link below. |
---> |
-<div id="table"> |
- <a href="inexistant_resources.html" >When hovered, the background should have the same color as this text.</a> |
-</div> |
-</body> |
-</html> |