blob: 1e569cd486e1b340b645d376ac654a2931e68a4d (
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
|
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#overflow {
overflow:auto;
width:200px;
height:200px;
-webkit-transform:translateZ(0);
}
</style>
<script type='text/javascript'>
function doTest() {
var canvas = document.createElement('canvas');
canvas.width = 1;
canvas.height = 400;
var content = document.getElementById("content");
content.onload = function() {
var overflow = document.getElementById("overflow");
overflow.scrollTop = 50;
if (window.testRunner)
testRunner.notifyDone();
}
content.src = canvas.toDataURL();
}
window.addEventListener('load', doTest, false);
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsTextWithPixelResults();
}
</script>
</head>
<body>
<!-- This test passes if a partially scrolled scrollbar appears -->
<div id="overflow">
<img id="content">
</div>
</body>
</html>
|