Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change-2.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change-2.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change-2.html |
deleted file mode 100644 |
index 0a56a8d745fa925df834dccdf0d1e8590e96e767..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change-2.html |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../../fast/js/resources/js-test-pre.js"></script> |
-</head> |
-<body onload="runTest();"> |
-<div id="targetDiv" style="-webkit-transform: translateZ(0); position: relative; left: 10px; top: 10px"></div> |
-<div style="position: relative; left: 10px; top: 40px; width: 200px; height: 100px; overflow-y: scroll; overflow-x: scroll;"> |
-<a href="">Link 1</a><br> |
-<a href="">Link 2</a><br> |
-<a href="" id="linkToRemove">Link 3</a><br id="brToRemove"> |
-<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 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(); |
- } |
- |
- // In this test a link highlight is commenced, then a node is deleted from in front of |
- // target, forcing a layout change that moves the target node mid-animation. |
- if (window.eventSender) { |
- eventSender.gestureTapDown(x, y); |
- var linkToRemove = document.getElementById('linkToRemove'); |
- linkToRemove.parentNode.removeChild(linkToRemove); |
- var brToRemove = document.getElementById('brToRemove'); |
- brToRemove.parentNode.removeChild(brToRemove); |
- window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</script> |
-</body> |
-</html> |