Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-clipped.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-clipped.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-clipped.html |
deleted file mode 100644 |
index e5369bd349b6b9ccb2176eae6e52e685e5ca1527..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-clipped.html |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../../../../fast/js/resources/js-test-pre.js"></script> |
-</head> |
-<body onLoad="runTest();"> |
-<iframe id="targetFrame" src="resources/1-frame-composited.html" style="position: relative; left: 10px; top: 10px; width: 400px; height: 150px;"></iframe> |
-<div style="position: relative; left: 10px; top: 20px;"> |
-This test is successful if "Target Link" is scrolled barely out of view ("Link 4" is at the top of the frame) |
-and the transparent green box with rounded rectangles is not visible. |
-</div> |
-<script> |
-function runTest() { |
- var targetFrame = document.getElementById("targetFrame"); |
- var clientRect = targetFrame.contentDocument.getElementById('targetLink').getBoundingClientRect(); |
- x = (clientRect.left + clientRect.right) / 2; |
- y = (clientRect.top + clientRect.bottom) / 2 + targetFrame.getBoundingClientRect().top; |
- if (window.testRunner) { |
- testRunner.dumpAsText(true); |
- testRunner.waitUntilDone(); |
- } |
- |
- if (window.eventSender) { |
- eventSender.gestureTapDown(x, y); |
- document.getElementById("targetFrame").contentWindow.scrollTo(0, 90); |
- window.setTimeout(function() { window.testRunner.notifyDone(); }, 0); |
- } else { |
- debug("This test requires DumpRenderTree."); |
- } |
-} |
-</script> |
-</body> |
-</html> |