<!DOCTYPE html>
<html>
<head>
<script src="resources/link-highlight-helper.js"></script>
<link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css">
<style>
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
</style>
</head>
<body onload="runTest();">
<div style="position: relative; left: 10; top: 40">
<a href="" id="targetLink" class="opaqueHighlight">Target Link.</a>
</div>
<div style="will-change: transform; position: relative; left: 10; top: 70">
This test is successful if "Target Link" above is covered in a green rectangle with square corners.
</div>
<script>
function runTest() {
useMockHighlight();
if (window.internals) {
internals.setPageScaleFactor(2);
}
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.");
}
}
</script>
</script>
</body>
</html>