summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/compositing/gestures/gesture-tapHighlight-simple-window-scroll-expected.html
blob: 64bcfb3af77f25a7477d03a0f70480440cd0ffef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
<link rel="stylesheet" type="text/css" href="resources/link-highlight-style.css">
</head>
<body onload="runTest();">
<div style="transform: translateZ(0); width=1600px; height: 1000px">
<div style="position: relative; left: 100; top: 50;">
<a href="">Link 1</a></br>
<a href="">Link 2</a></br>
<a href="">Link 3</a></br>
<a class="fauxHighlight" href="" id="targetLink">Target Link</a>
</div>
<div style="position: relative; left: 100; top: 150; width: 700;">
This test is successful if "Target Link" above is covered in a green rectangle with square corners,
and the window is partially scrolled in both directions.
</div>
</div>
<div style="width: 1000px; height: 10px"></div>
<script>
function runTest() {
    var clientRect = document.getElementById('targetLink').getBoundingClientRect();
    x = (clientRect.left + clientRect.right) / 2;
    y = (clientRect.top + clientRect.bottom) / 2;
    if (window.testRunner) {
        testRunner.dumpAsTextWithPixelResults();
        testRunner.waitUntilDone();
    }

    if (window.eventSender) {
        //window.scrollTo(50, 30)
        window.setTimeout(function() { window.testRunner.notifyDone(); }, 0);
    } else {
        debug("This test requires DumpRenderTree.");
    }
}
</script>
</script>
</body>
</html>