chromium/third_party/blink/web_tests/compositing/gestures/gesture-tapHighlight-composited-img.html

<!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>