blob: b5115d36fe7598d7c2f1b088e7cc783ae557963b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>
Testcase with body and html *independently* scrollable,
with body's "overflow" set dynamically.
</title>
<style>
html {
overflow: scroll;
}
</style>
<script>
function doTest() {
document.body.style.overflow = "scroll";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
</body>
</html>
|