Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line.html |
deleted file mode 100644 |
index c68d96b12aab7bbe632cfa661d9724216ac4f442..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-multi-line.html |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../../fast/js/resources/js-test-pre.js"></script> |
-</head> |
-<body onload="runTest();"> |
-<div style="-webkit-transform: translateZ(0); position: relative; left: 10; top: 40"> |
-<a href="" id="targetLink" style="-webkit-tap-highlight-color: rgba(0, 255, 0, 0.5)">Long Target<br>Link.</a> |
-</div> |
-<div style="position: relative; left: 10; top: 70"> |
-This test is successful if "Long Target Link" above is covered in two transparent green rectangles with square corners. |
-</div> |
-<script> |
-function runTest() { |
- var clientRect = document.getElementById('targetLink').getBoundingClientRect(); |
- x = (clientRect.left + clientRect.right) / 2; |
- y = (clientRect.top + clientRect.bottom) / 2; |
- touchWidth = (clientRect.right - clientRect.left) / 4; |
- touchHeight = (clientRect.bottom - clientRect.top) / 4; |
- if (window.testRunner) { |
- testRunner.dumpAsText(true); |
- testRunner.waitUntilDone(); |
- } |
- |
- if (window.eventSender) { |
- eventSender.gestureTapDown(x, y, touchWidth, touchHeight); |
- window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</script> |
-</body> |
-</html> |