mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
b206e22623
MozReview-Commit-ID: 8WP2qDiKpyP --HG-- extra : rebase_source : 3be40062f6e1de2e6f8d135f7d11ba2f86e6ab01
24 lines
498 B
HTML
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>
|