blob: 8e603fbc5ab8e9f99a51b393b1064a50bdf65415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<title>Check that the apz.disable_for_sle_pages pref behaves as expected</title>
<script>
addEventListener('load', function() {
window.scrollTo(0, 100);
setTimeout(done, 0);
}, false);
function done() {
document.documentElement.classList.remove('reftest-wait');
}
</script>
</head>
<body style="height: 5000px; background-image:url(repeatable-diagonal-gradient.png);">
<div id="fake-fixed" style="position: absolute; top: 100px; left: 100px; width: 100px; height: 100px; background-color: green"></div>
</body>
</html>
|