blob: d9c7803308e0d8273a4dca7f3718950f9a2d83c3 (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
html {
transform: translateZ(0);
}
body {
height: 2000px;
background-image: url('resources/simple_image.png');
background-size: 200px 200px;
background-attachment: fixed;
overflow: hidden; /* hide scrollbar */
}
</style>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
}
function doTest()
{
window.scrollTo(0, 223);
if (window.testRunner)
testRunner.notifyDone();
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
</body>
</html>
|