mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a802860942
This test verifies that the reflow will not be interrupted by a sticky element that is also a scroll container.
19 lines
543 B
HTML
19 lines
543 B
HTML
<!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>
|