Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner.html |
deleted file mode 100644 |
index 5dde337a7295be5172432349cc8f33ba23874dec..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner.html |
+++ /dev/null |
@@ -1,47 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../../fast/js/resources/js-test-pre.js"></script> |
-</head> |
-<body onload="runTest();"> |
-<div id="targetDiv" style="position: relative; left: 10px; top: 10px"></div> |
-<div style="position: relative; left: 10px; top: 40px; width: 300px; height: 150px; overflow-y: scroll; overflow-x: scroll;"> |
- <div style="position: relative; left: 10px; top: i10px; width: 200px; height: 100px; overflow-y: scroll; overflow-x: scroll;"> |
- <div style="-webkit-transform: translateZ(0)"> |
- <a href="">Link 1</a><br> |
- <a href="">Link 2</a><br> |
- <a href="">Link 3</a><br> |
- <a href="" id="targetLink" style="-webkit-tap-highlight-color: rgba(0, 255, 0, 0.5)">Target Link.</a><br> |
- <a href="">Link 4</a><br> |
- <a href="">Link 5</a><br> |
- </div> |
- </div> |
- <a href="">Link 6</a><br> |
- <a href="">Link 7</a><br> |
- <a href="">Link 8</a><br> |
- <a href="">Link 9</a><br> |
-</div> |
-<div style="position: relative; left: 10px; top: 80px"> |
-This test is successful if "Target Link" above is covered in a transparent green rectangle with rounded corners. |
-</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); |
- window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</script> |
-</body> |
-</html> |