chromium/third_party/blink/web_tests/compositing/gestures/gesture-tapHighlight-simple-div-boxshadow.html

<!DOCTYPE html>
<html>
<head>
<script src="resources/target-div-run-test.js"></script>
<script src="resources/link-highlight-helper.js"></script>
<link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css">
</head>
<body onload="runTest();">
<div class="opaqueHighlight" id="targetDiv" style="position: relative; left: 50px; top: 50px; width: 50px; height: 50px; -webkit-box-shadow: 0px 4px 23px 5px rgba(0, 0, 0, 0.2); border-style: solid; border-width: 2px; cursor: Pointer">
<br><center>Target</center><br>
</div>
<div style="position: absolute; left: 10px; top: 250px; will-change: transform;">
This test is successful if the box labelled "Target" has a green rectangle centered on it.
</div>
<script>
function runTest() {
    useMockHighlight();

    var clientRect = document.getElementById('targetDiv').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>