mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a5279344bb
- Added crashtest to ensure that the "Should be starting from the first continuation" assertion is not fired when recalculating the position of a sticky with ib-split siblings.
14 lines
307 B
HTML
14 lines
307 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<span id="x" style="position: sticky; bottom: 75px;">
|
|
<div></div>
|
|
</span>
|
|
<script>
|
|
document.addEventListener("MozReftestInvalidate", function() {
|
|
document.getElementById('x').style.bottom = '-3000px';
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|