blob: 4a3b08203ba3cae429a62f9f02c9da3a4e443ed4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/run-after-layout-and-paint.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();">
<iframe id="targetFrame" src="resources/1-frame-composited.html" style="position: relative; left: 10px; top: 10px; width: 400px; height: 150px;"></iframe>
<div style="position: relative; left: 10px; top: 20px; will-change: transform;">
This test is successful if "Target Link" is covered by a green box with square corners,
and the frame is partially scrolled.
</div>
<script>
function runTest() {
useMockHighlight();
var targetFrame = document.getElementById("targetFrame");
var clientRect = targetFrame.contentDocument.getElementById('targetLink').getBoundingClientRect();
x = (clientRect.left + clientRect.right) / 2;
y = (clientRect.top + clientRect.bottom) / 2 + targetFrame.getBoundingClientRect().top;
if (window.testRunner)
testRunner.waitUntilDone();
if (window.eventSender && window.testRunner) {
eventSender.gestureShowPress(x, y);
runAfterLayoutAndPaint(function() {
document.getElementById("targetFrame").contentDocument.getElementById('divToControlCompositing').style.webkitTransform = "";
runAfterLayoutAndPaint(function() {
document.getElementById("targetFrame").contentWindow.scrollTo(0, 20);
testRunner.notifyDone();
});
});
} else {
debug("This test requires DumpRenderTree.");
}
}
</script>
</body>
</html>