mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
2696e19fbd
- 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>
|