blob: c60d06c804a9186d9d2338af7a64e3f7a79c1d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
window.setScrollMarks([20]);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="doTest()">
<p>This is some text</p>
<p style="height: 1000px;">Box 1</p>
<p>This is some text</p>
<p style="height: 1000px;">Box 2</p>
<p>This is some text</p>
</body>
</html>
|