Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-navigate.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-navigate.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-navigate.html |
deleted file mode 100644 |
index 1f1104cd4c0e014efd8d7b9980926d92374510d3..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-navigate.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../../fast/js/resources/js-test-pre.js"></script> |
-</head> |
-<body onload="runTest();"> |
-<div style="position: relative; left: 10px; top: 40px"> |
-<a href="" id="targetLink" style="-webkit-tap-highlight-color: rgba(0, 255, 0, 0.5)">Target Link.</a> |
-</div> |
-<!-- For this test to work, must put the translateZ(0) on a div other than the one containing the |
- highlighted link. This will force the highlight into the non-composited content host, which |
- may survive the navigation. --> |
-<div style="position: relative; left: 10px; top: 70px; -webkit-transform: translateZ(0);"> |
-This test is not successful if this message appears. |
-</div> |
-<script> |
-function runTest() { |
- var clientRect = document.getElementById('targetLink').getBoundingClientRect(); |
- x = (clientRect.left + clientRect.right) / 2; |
- y = (clientRect.top + clientRect.bottom) / 2; |
- if (window.testRunner) { |
- testRunner.dumpAsText(true); |
- testRunner.waitUntilDone(); |
- } |
- |
- if (window.eventSender) { |
- eventSender.gestureTapDown(x, y); |
- // Force display of highlight before navigating to second page. |
- window.testRunner.display(); |
- window.location = 'resources/gesture-tapHighlight-simple-navigate-destination.html'; |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</body> |
-</html> |