blob: ebc35975321508900967f85858a17f4656bd71d8 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<!DOCTYPE html>
<html>
<head>
<script src="../resources/run-after-layout-and-paint.js"></script>
<style>
body {
margin: 0;
height: 2500px;
}
.box {
height: 100px;
width: 100px;
}
.fixed {
position: fixed;
left: 0px;
top: 0px;
}
.wrapper {
position: absolute;
background-color: green;
}
</style>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
}
if (window.internals) {
window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
}
function doScroll()
{
window.setTimeout(function() {
window.scrollTo(0, 200);
runAfterLayoutAndPaint(function() {
if (window.internals) {
document.getElementById('results').innerText = internals.layerTreeAsText(document);
if (window.testRunner) {
testRunner.notifyDone();
}
}
});
}, 10);
}
window.addEventListener('load', doScroll, false);
</script>
</head>
<body>
<pre id="results"></pre>
<div class="fixed">
<div class="wrapper box">
</div>
</div>
</body>
</html>
|