Mypal/layout/reftests/scrolling/propagated-overflow-style-1b.html
2019-03-11 13:26:37 +03:00

24 lines
498 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>
Testcase with body and html *independently* scrollable,
with html's "overflow" set dynamically.
</title>
<style>
body {
overflow: scroll;
}
</style>
<script>
function doTest() {
document.documentElement.style.overflow = "scroll";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body>
</body>
</html>