blob: 6df27edd9f04795c225c8ea2840ba358cc48073c [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="resources/link-highlight-helper.js"></script>
<link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css">
</head>
<body onload="runTest();" style="overflow: hidden">
<img class="opaqueHighlight" style="cursor: pointer; will-change: transform;" width="320" height="240" id="targetLink" src="resources/dice.png">
</div>
<script>
function runTest() {
useMockHighlight();
var clientRect = document.getElementById('targetLink').getBoundingClientRect();
x = (clientRect.left + clientRect.right) / 2;
y = (clientRect.top + clientRect.bottom) / 2;
if (window.testRunner)
testRunner.waitUntilDone();
if (window.eventSender) {
eventSender.gestureShowPress(x, y);
window.setTimeout(function() { testRunner.notifyDone(); }, 0);
} else {
debug("This test requires DumpRenderTree.");
debug("This test makes sure that a link highlight is shown for a graphics " +
"layer that does not use composited scrolling.");
debug("This test is successful if the image below is covered in a green rectangle.");
}
}
</script>
</script>
</body>
</html>