Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: third_party/WebKit/LayoutTests/fast/repaint/table-hover-on-link.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698