Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change.html |
deleted file mode 100644 |
index 8eabbb0b17024ccba43ba229312bb86987448c13..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change.html |
+++ /dev/null |
@@ -1,46 +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="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 targetLink = document.getElementById('targetLink'); |
- 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 new node is inserted before the highlight |
- // target, forcing a layout change that moves the target node mid-animation. |
- if (window.eventSender) { |
- eventSender.gestureTapDown(x, y); |
- var newLink = document.createElement('a'); |
- newLink.setAttribute('href', ''); |
- newLink.innerHTML = 'Link 3'; |
- targetLink.parentNode.insertBefore(newLink, targetLink); |
- targetLink.parentNode.insertBefore(document.createElement('br'), targetLink) |
- window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</script> |
-</body> |
-</html> |