Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2.html |
deleted file mode 100644 |
index f3a42fe01ad61f49fe02874753a9f86e03b73b61..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel2.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();" onclick="doNothing();"> |
-<div style="-webkit-transform: translateZ(0); 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> |
-<div style="position: relative; left: 10px; top: 70px"> |
-This test is successful if "Target Link" above is covered in a green rectangle. |
-</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) { |
- // Generate valid link highlight. |
- eventSender.gestureTapDown(x, y); |
- |
- // Send GestureTapCancel, this should cause the highlight to animate away. |
- eventSender.gestureTapCancel(); |
- window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</script> |
-</body> |
-</html> |