blob: 68ad4fcbdf4d8f956ebe429da7f96e7945d45bcf (
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);
</script>
</body>
</html>
|