Index: LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-background.html |
diff --git a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-background.html b/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-background.html |
deleted file mode 100644 |
index 11b291361fed5074c7201158c3d19354613dadc7..0000000000000000000000000000000000000000 |
--- a/LayoutTests/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-background.html |
+++ /dev/null |
@@ -1,37 +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: 10px; top: 40px"> |
-<a href="" id="targetLink" style="-webkit-tap-highlight-color: rgba(0, 255, 0, 0.5)">Target Link.</a> |
-</div> |
-<div style="position: relative; left: 10px; top: 70px"> |
-This test is successful if no link highlight appears (in particular, the entire viewport should remain unchanged, and the background |
-should be white and not grey). |
-</div> |
-<script> |
-// This test makes sure a GestureTapDown event on the page background doesn't "highlight" the entire viewport. |
-function runTest() { |
- // To enable the 'bad behaviour' we are testing, the RenderView must be able to respond to mouse clicks. |
- document.addEventListener("click", function(evt) { }); |
- var clientRect = document.getElementById('targetLink').getBoundingClientRect(); |
- x = 150; // Pick a tap location outside the link area, so we're clicking on the background. |
- y = 150; |
- 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> |