blob: 250bedd6c6aa9d871cdba4d3225b192d5ac24ad9 (
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
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>
Testcase with only one of [html,body] being scrollable,
after body's "overflow" is reset dynamically.
</title>
<style>
html {
overflow: scroll;
}
body {
overflow: scroll;
}
</style>
<script>
function doTest() {
document.body.style.overflow = "visible";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
</body>
</html>
|