blob: 4b07a6bd4a4054c862b5c194d0740d5b9589f444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<div style="overflow:hidden;height:100px">
<div style="overflow-x:hidden;position:sticky;top:50px">
<div id="testdiv" style="width:10px;height:10px;background-color:green"></div>
</div>
</div>
<script>
function doTest() {
var x = document.getElementById('testdiv');
x.style.width = "200px";
document.documentElement.className = "";
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</body>
</html>
|